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.
1211 1212 1213 1214 |
# File 'lib/v20190904/models.rb', line 1211 def initialize(list=nil, requestid=nil) @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
1209 1210 1211 |
# File 'lib/v20190904/models.rb', line 1209 def List @List end |
#RequestId ⇒ Object
1209 1210 1211 |
# File 'lib/v20190904/models.rb', line 1209 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 |
# File 'lib/v20190904/models.rb', line 1216 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 |