Class: TencentCloud::Iotexplorer::V20190423::DescribeBindedProductsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::DescribeBindedProductsResponse
- Defined in:
- lib/v20190423/models.rb
Overview
DescribeBindedProducts返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(products = nil, total = nil, requestid = nil) ⇒ DescribeBindedProductsResponse
constructor
A new instance of DescribeBindedProductsResponse.
Constructor Details
#initialize(products = nil, total = nil, requestid = nil) ⇒ DescribeBindedProductsResponse
Returns a new instance of DescribeBindedProductsResponse.
3944 3945 3946 3947 3948 |
# File 'lib/v20190423/models.rb', line 3944 def initialize(products=nil, total=nil, requestid=nil) @Products = products @Total = total @RequestId = requestid end |
Instance Attribute Details
#Products ⇒ Object
3942 3943 3944 |
# File 'lib/v20190423/models.rb', line 3942 def Products @Products end |
#RequestId ⇒ Object
3942 3943 3944 |
# File 'lib/v20190423/models.rb', line 3942 def RequestId @RequestId end |
#Total ⇒ Object
3942 3943 3944 |
# File 'lib/v20190423/models.rb', line 3942 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 |
# File 'lib/v20190423/models.rb', line 3950 def deserialize(params) unless params['Products'].nil? @Products = [] params['Products'].each do |i| bindproductinfo_tmp = BindProductInfo.new bindproductinfo_tmp.deserialize(i) @Products << bindproductinfo_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |