Class: TencentCloud::Iotcloud::V20210408::DescribePrivateCABindedProductsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotcloud::V20210408::DescribePrivateCABindedProductsResponse
- Defined in:
- lib/v20210408/models.rb
Overview
DescribePrivateCABindedProducts返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(products = nil, requestid = nil) ⇒ DescribePrivateCABindedProductsResponse
constructor
A new instance of DescribePrivateCABindedProductsResponse.
Constructor Details
#initialize(products = nil, requestid = nil) ⇒ DescribePrivateCABindedProductsResponse
Returns a new instance of DescribePrivateCABindedProductsResponse.
1941 1942 1943 1944 |
# File 'lib/v20210408/models.rb', line 1941 def initialize(products=nil, requestid=nil) @Products = products @RequestId = requestid end |
Instance Attribute Details
#Products ⇒ Object
1939 1940 1941 |
# File 'lib/v20210408/models.rb', line 1939 def Products @Products end |
#RequestId ⇒ Object
1939 1940 1941 |
# File 'lib/v20210408/models.rb', line 1939 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 |
# File 'lib/v20210408/models.rb', line 1946 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 @RequestId = params['RequestId'] end |