class TencentCloud::Lkeap::V20240522::ListDocsResponse
ListDocs返回参数结构体
def deserialize(params)
def deserialize(params) @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| docitem_tmp = DocItem.new docitem_tmp.deserialize(i) @List << docitem_tmp end end @RequestId = params['RequestId'] end
def initialize(totalcount=nil, list=nil, requestid=nil)
def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end