class TencentCloud::Ame::V20190916::DescribeItemsResponse
DescribeItems返回参数结构体
def deserialize(params)
def deserialize(params) @Offset = params['Offset'] @Size = params['Size'] @Total = params['Total'] @HaveMore = params['HaveMore'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| item_tmp = Item.new item_tmp.deserialize(i) @Items << item_tmp end end @RequestId = params['RequestId'] end
def initialize(offset=nil, size=nil, total=nil, havemore=nil, items=nil, requestid=nil)
def initialize(offset=nil, size=nil, total=nil, havemore=nil, items=nil, requestid=nil) @Offset = offset @Size = size @Total = total @HaveMore = havemore @Items = items @RequestId = requestid end