Class: TencentCloud::Omics::V20221128::DescribeTablesRowsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20221128/models.rb

Overview

DescribeTablesRows返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeTablesRowsResponse

Returns a new instance of DescribeTablesRowsResponse.



798
799
800
801
802
# File 'lib/v20221128/models.rb', line 798

def initialize(totalcount=nil, rows=nil, requestid=nil)
  @TotalCount = totalcount
  @Rows = rows
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • TotalCount:

    结果总数。

  • Rows:

    表格行列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



796
797
798
# File 'lib/v20221128/models.rb', line 796

def RequestId
  @RequestId
end

#RowsObject

Parameters:

  • TotalCount:

    结果总数。

  • Rows:

    表格行列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



796
797
798
# File 'lib/v20221128/models.rb', line 796

def Rows
  @Rows
end

#TotalCountObject

Parameters:

  • TotalCount:

    结果总数。

  • Rows:

    表格行列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



796
797
798
# File 'lib/v20221128/models.rb', line 796

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



804
805
806
807
808
809
810
811
812
813
814
815
# File 'lib/v20221128/models.rb', line 804

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Rows'].nil?
    @Rows = []
    params['Rows'].each do |i|
      tablerow_tmp = TableRow.new
      tablerow_tmp.deserialize(i)
      @Rows << tablerow_tmp
    end
  end
  @RequestId = params['RequestId']
end