class TencentCloud::Emr::V20190103::DescribeHBaseTableOverviewResponse
DescribeHBaseTableOverview返回参数结构体
def deserialize(params)
def deserialize(params) unless params['TableMonitorList'].nil? @TableMonitorList = [] params['TableMonitorList'].each do |i| overviewrow_tmp = OverviewRow.new overviewrow_tmp.deserialize(i) @TableMonitorList << overviewrow_tmp end end @TotalCount = params['TotalCount'] unless params['SchemaList'].nil? @SchemaList = [] params['SchemaList'].each do |i| tableschemaitem_tmp = TableSchemaItem.new tableschemaitem_tmp.deserialize(i) @SchemaList << tableschemaitem_tmp end end @RequestId = params['RequestId'] end
def initialize(tablemonitorlist=nil, totalcount=nil, schemalist=nil, requestid=nil)
def initialize(tablemonitorlist=nil, totalcount=nil, schemalist=nil, requestid=nil) @TableMonitorList = tablemonitorlist @TotalCount = totalcount @SchemaList = schemalist @RequestId = requestid end