class TencentCloud::Cdb::V20170320::DescribeAccountsResponse
DescribeAccounts返回参数结构体
def deserialize(params)
def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| accountinfo_tmp = AccountInfo.new accountinfo_tmp.deserialize(i) @Items << accountinfo_tmp end end @MaxUserConnections = params['MaxUserConnections'] @RequestId = params['RequestId'] end
def initialize(totalcount=nil, items=nil, maxuserconnections=nil, requestid=nil)
def initialize(totalcount=nil, items=nil, maxuserconnections=nil, requestid=nil) @TotalCount = totalcount @Items = items @MaxUserConnections = maxuserconnections @RequestId = requestid end