Class: TencentCloud::Iotexplorer::V20190423::GetTWeTalkProductConfigListV2Response
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetTWeTalkProductConfigListV2Response
- Defined in:
- lib/v20190423/models.rb
Overview
GetTWeTalkProductConfigListV2返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, total = nil, requestid = nil) ⇒ GetTWeTalkProductConfigListV2Response
constructor
A new instance of GetTWeTalkProductConfigListV2Response.
Constructor Details
#initialize(data = nil, total = nil, requestid = nil) ⇒ GetTWeTalkProductConfigListV2Response
Returns a new instance of GetTWeTalkProductConfigListV2Response.
9238 9239 9240 9241 9242 |
# File 'lib/v20190423/models.rb', line 9238 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
9236 9237 9238 |
# File 'lib/v20190423/models.rb', line 9236 def Data @Data end |
#RequestId ⇒ Object
9236 9237 9238 |
# File 'lib/v20190423/models.rb', line 9236 def RequestId @RequestId end |
#Total ⇒ Object
9236 9237 9238 |
# File 'lib/v20190423/models.rb', line 9236 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 |
# File 'lib/v20190423/models.rb', line 9244 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| talkproductconfigv2info_tmp = TalkProductConfigV2Info.new talkproductconfigv2info_tmp.deserialize(i) @Data << talkproductconfigv2info_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |