Class: TencentCloud::Omics::V20221128::DescribeTablesRowsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Omics::V20221128::DescribeTablesRowsRequest
- Defined in:
- lib/v20221128/models.rb
Overview
DescribeTablesRows请求参数结构体
Instance Attribute Summary collapse
-
#Filters ⇒ Object
-
Tr:表格数据,支持模糊查询 - TableRowUuid:表格行UUID.
-
-
#Limit ⇒ Object
-
Tr:表格数据,支持模糊查询 - TableRowUuid:表格行UUID.
-
-
#Offset ⇒ Object
-
Tr:表格数据,支持模糊查询 - TableRowUuid:表格行UUID.
-
-
#ProjectId ⇒ Object
-
Tr:表格数据,支持模糊查询 - TableRowUuid:表格行UUID.
-
-
#TableId ⇒ Object
-
Tr:表格数据,支持模糊查询 - TableRowUuid:表格行UUID.
-
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, tableid = nil, limit = nil, offset = nil, filters = nil) ⇒ DescribeTablesRowsRequest
constructor
A new instance of DescribeTablesRowsRequest.
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
#Filters ⇒ Object
-
Tr:表格数据,支持模糊查询
-
TableRowUuid:表格行UUID
761 762 763 |
# File 'lib/v20221128/models.rb', line 761 def Filters @Filters end |
#Limit ⇒ Object
-
Tr:表格数据,支持模糊查询
-
TableRowUuid:表格行UUID
761 762 763 |
# File 'lib/v20221128/models.rb', line 761 def Limit @Limit end |
#Offset ⇒ Object
-
Tr:表格数据,支持模糊查询
-
TableRowUuid:表格行UUID
761 762 763 |
# File 'lib/v20221128/models.rb', line 761 def Offset @Offset end |
#ProjectId ⇒ Object
-
Tr:表格数据,支持模糊查询
-
TableRowUuid:表格行UUID
761 762 763 |
# File 'lib/v20221128/models.rb', line 761 def ProjectId @ProjectId end |
#TableId ⇒ Object
-
Tr:表格数据,支持模糊查询
-
TableRowUuid:表格行UUID
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 |