Class: TencentCloud::Omics::V20221128::DescribeTablesRowsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Omics::V20221128::DescribeTablesRowsResponse
- Defined in:
- lib/v20221128/models.rb
Overview
DescribeTablesRows返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, rows = nil, requestid = nil) ⇒ DescribeTablesRowsResponse
constructor
A new instance of DescribeTablesRowsResponse.
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
#RequestId ⇒ Object
796 797 798 |
# File 'lib/v20221128/models.rb', line 796 def RequestId @RequestId end |
#Rows ⇒ Object
796 797 798 |
# File 'lib/v20221128/models.rb', line 796 def Rows @Rows end |
#TotalCount ⇒ Object
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 |