class TencentCloud::Iotexplorer::V20190423::DescribeGatewaySubProductsResponse

DescribeGatewaySubProducts返回参数结构体

def deserialize(params)

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

def initialize(products=nil, total=nil, requestid=nil)

def initialize(products=nil, total=nil, requestid=nil)
  @Products = products
  @Total = total
  @RequestId = requestid
end