class TencentCloud::Tiia::V20190529::DetectProductBetaResponse

def deserialize(params)

def deserialize(params)
  unless params['RegionDetected'].nil?
    @RegionDetected = []
    params['RegionDetected'].each do |i|
      regiondetected_tmp = RegionDetected.new
      regiondetected_tmp.deserialize(i)
      @RegionDetected << regiondetected_tmp
    end
  end
  unless params['ProductInfo'].nil?
    @ProductInfo = ProductInfo.new
    @ProductInfo.deserialize(params['ProductInfo'])
  end
  unless params['ProductInfoList'].nil?
    @ProductInfoList = []
    params['ProductInfoList'].each do |i|
      productinfo_tmp = ProductInfo.new
      productinfo_tmp.deserialize(i)
      @ProductInfoList << productinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end