Class: TencentCloud::Cfw::V20190904::CreateBlockIgnoreRuleListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfw::V20190904::CreateBlockIgnoreRuleListResponse
- Defined in:
- lib/v20190904/models.rb
Overview
CreateBlockIgnoreRuleList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(list = nil, requestid = nil) ⇒ CreateBlockIgnoreRuleListResponse
constructor
A new instance of CreateBlockIgnoreRuleListResponse.
Constructor Details
#initialize(list = nil, requestid = nil) ⇒ CreateBlockIgnoreRuleListResponse
Returns a new instance of CreateBlockIgnoreRuleListResponse.
1458 1459 1460 1461 |
# File 'lib/v20190904/models.rb', line 1458 def initialize(list=nil, requestid=nil) @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
1456 1457 1458 |
# File 'lib/v20190904/models.rb', line 1456 def List @List end |
#RequestId ⇒ Object
1456 1457 1458 |
# File 'lib/v20190904/models.rb', line 1456 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 |
# File 'lib/v20190904/models.rb', line 1463 def deserialize(params) unless params['List'].nil? @List = [] params['List'].each do |i| ioclistdata_tmp = IocListData.new ioclistdata_tmp.deserialize(i) @List << ioclistdata_tmp end end @RequestId = params['RequestId'] end |