Class: TencentCloud::Omics::V20221128::DescribeTablesRowsRequest

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(projectid = nil, tableid = nil, limit = nil, offset = nil, filters = nil) ⇒ DescribeTablesRowsRequest

Returns a new instance of DescribeTablesRowsRequest.



763
764
765
766
767
768
769
# File 'lib/v20221128/models.rb', line 763

def initialize(projectid=nil, tableid=nil, limit=nil, offset=nil, filters=nil)
  @ProjectId = projectid
  @TableId = tableid
  @Limit = limit
  @Offset = offset
  @Filters = filters
end

Instance Attribute Details

#FiltersObject

  • Tr:表格数据,支持模糊查询

  • TableRowUuid:表格行UUID

Parameters:

  • ProjectId:

    项目ID。

  • TableId:

    表格ID。

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • Filters:

    过滤器,支持过滤字段:



761
762
763
# File 'lib/v20221128/models.rb', line 761

def Filters
  @Filters
end

#LimitObject

  • Tr:表格数据,支持模糊查询

  • TableRowUuid:表格行UUID

Parameters:

  • ProjectId:

    项目ID。

  • TableId:

    表格ID。

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • Filters:

    过滤器,支持过滤字段:



761
762
763
# File 'lib/v20221128/models.rb', line 761

def Limit
  @Limit
end

#OffsetObject

  • Tr:表格数据,支持模糊查询

  • TableRowUuid:表格行UUID

Parameters:

  • ProjectId:

    项目ID。

  • TableId:

    表格ID。

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • Filters:

    过滤器,支持过滤字段:



761
762
763
# File 'lib/v20221128/models.rb', line 761

def Offset
  @Offset
end

#ProjectIdObject

  • Tr:表格数据,支持模糊查询

  • TableRowUuid:表格行UUID

Parameters:

  • ProjectId:

    项目ID。

  • TableId:

    表格ID。

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • Filters:

    过滤器,支持过滤字段:



761
762
763
# File 'lib/v20221128/models.rb', line 761

def ProjectId
  @ProjectId
end

#TableIdObject

  • Tr:表格数据,支持模糊查询

  • TableRowUuid:表格行UUID

Parameters:

  • ProjectId:

    项目ID。

  • TableId:

    表格ID。

  • Limit:

    返回数量,默认为10,最大值为100。

  • Offset:

    偏移量,默认为0。

  • Filters:

    过滤器,支持过滤字段:



761
762
763
# File 'lib/v20221128/models.rb', line 761

def TableId
  @TableId
end

Instance Method Details

#deserialize(params) ⇒ Object



771
772
773
774
775
776
777
778
779
780
781
782
783
784
# File 'lib/v20221128/models.rb', line 771

def deserialize(params)
  @ProjectId = params['ProjectId']
  @TableId = params['TableId']
  @Limit = params['Limit']
  @Offset = params['Offset']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
end