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.
9222 9223 9224 9225 9226 |
# File 'lib/v20190423/models.rb', line 9222 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
9220 9221 9222 |
# File 'lib/v20190423/models.rb', line 9220 def Data @Data end |
#RequestId ⇒ Object
9220 9221 9222 |
# File 'lib/v20190423/models.rb', line 9220 def RequestId @RequestId end |
#Total ⇒ Object
9220 9221 9222 |
# File 'lib/v20190423/models.rb', line 9220 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 |
# File 'lib/v20190423/models.rb', line 9228 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 |