class TencentCloud::Cdwpg::V20201230::DescribeUpgradeListResponse

DescribeUpgradeList返回参数结构体

def deserialize(params)

def deserialize(params)
  unless params['UpgradeItems'].nil?
    @UpgradeItems = []
    params['UpgradeItems'].each do |i|
      upgradeitem_tmp = UpgradeItem.new
      upgradeitem_tmp.deserialize(i)
      @UpgradeItems << upgradeitem_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end

def initialize(upgradeitems=nil, totalcount=nil, requestid=nil)

def initialize(upgradeitems=nil, totalcount=nil, requestid=nil)
  @UpgradeItems = upgradeitems
  @TotalCount = totalcount
  @RequestId = requestid
end