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.
1162 1163 1164 1165 |
# File 'lib/v20190904/models.rb', line 1162 def initialize(list=nil, requestid=nil) @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
1160 1161 1162 |
# File 'lib/v20190904/models.rb', line 1160 def List @List end |
#RequestId ⇒ Object
1160 1161 1162 |
# File 'lib/v20190904/models.rb', line 1160 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 |
# File 'lib/v20190904/models.rb', line 1167 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 |