Class: TencentCloud::Dlc::V20210125::DescribeTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DescribeTablesResponse
- Defined in:
- lib/v20210125/models.rb
Overview
DescribeTables返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tablelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeTablesResponse
constructor
A new instance of DescribeTablesResponse.
Constructor Details
#initialize(tablelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeTablesResponse
Returns a new instance of DescribeTablesResponse.
9089 9090 9091 9092 9093 |
# File 'lib/v20210125/models.rb', line 9089 def initialize(tablelist=nil, totalcount=nil, requestid=nil) @TableList = tablelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
9087 9088 9089 |
# File 'lib/v20210125/models.rb', line 9087 def RequestId @RequestId end |
#TableList ⇒ Object
9087 9088 9089 |
# File 'lib/v20210125/models.rb', line 9087 def TableList @TableList end |
#TotalCount ⇒ Object
9087 9088 9089 |
# File 'lib/v20210125/models.rb', line 9087 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 |
# File 'lib/v20210125/models.rb', line 9095 def deserialize(params) unless params['TableList'].nil? @TableList = [] params['TableList'].each do |i| tableresponseinfo_tmp = TableResponseInfo.new tableresponseinfo_tmp.deserialize(i) @TableList << tableresponseinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |