Class: TencentCloud::Iotexplorer::V20190423::GetStudioProductListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::GetStudioProductListResponse
- Defined in:
- lib/v20190423/models.rb
Overview
GetStudioProductList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(products = nil, total = nil, requestid = nil) ⇒ GetStudioProductListResponse
constructor
A new instance of GetStudioProductListResponse.
Constructor Details
#initialize(products = nil, total = nil, requestid = nil) ⇒ GetStudioProductListResponse
Returns a new instance of GetStudioProductListResponse.
8984 8985 8986 8987 8988 |
# File 'lib/v20190423/models.rb', line 8984 def initialize(products=nil, total=nil, requestid=nil) @Products = products @Total = total @RequestId = requestid end |
Instance Attribute Details
#Products ⇒ Object
8982 8983 8984 |
# File 'lib/v20190423/models.rb', line 8982 def Products @Products end |
#RequestId ⇒ Object
8982 8983 8984 |
# File 'lib/v20190423/models.rb', line 8982 def RequestId @RequestId end |
#Total ⇒ Object
8982 8983 8984 |
# File 'lib/v20190423/models.rb', line 8982 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 |
# File 'lib/v20190423/models.rb', line 8990 def deserialize(params) unless params['Products'].nil? @Products = [] params['Products'].each do |i| productentry_tmp = ProductEntry.new productentry_tmp.deserialize(i) @Products << productentry_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |