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.
9171 9172 9173 9174 9175 |
# File 'lib/v20190423/models.rb', line 9171 def initialize(data=nil, total=nil, requestid=nil) @Data = data @Total = total @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
9169 9170 9171 |
# File 'lib/v20190423/models.rb', line 9169 def Data @Data end |
#RequestId ⇒ Object
9169 9170 9171 |
# File 'lib/v20190423/models.rb', line 9169 def RequestId @RequestId end |
#Total ⇒ Object
9169 9170 9171 |
# File 'lib/v20190423/models.rb', line 9169 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 |
# File 'lib/v20190423/models.rb', line 9177 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 |