Class: TencentCloud::Iotexplorer::V20190423::GetTWeTalkProductConfigListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetTWeTalkProductConfigListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
GetTWeTalkProductConfigList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(data = nil, total = nil, requestid = nil) ⇒ GetTWeTalkProductConfigListResponse
constructor
A new instance of GetTWeTalkProductConfigListResponse.
Constructor Details
#initialize(data = nil, total = nil, requestid = nil) ⇒ GetTWeTalkProductConfigListResponse
Returns a new instance of GetTWeTalkProductConfigListResponse.
9155 9156 9157 9158 9159 |
# File 'lib/v20190423/models.rb', line 9155 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
9153 9154 9155 |
# File 'lib/v20190423/models.rb', line 9153 def Data @Data end |
#RequestId ⇒ Object
9153 9154 9155 |
# File 'lib/v20190423/models.rb', line 9153 def RequestId @RequestId end |
#Total ⇒ Object
9153 9154 9155 |
# File 'lib/v20190423/models.rb', line 9153 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 |
# File 'lib/v20190423/models.rb', line 9161 def deserialize(params) unless params['Data'].nil? @Data = [] params['Data'].each do |i| talkproductconfiginfo_tmp = TalkProductConfigInfo.new talkproductconfiginfo_tmp.deserialize(i) @Data << talkproductconfiginfo_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |