Class: TencentCloud::Tcb::V20180608::DescribeTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::DescribeTablesResponse
- Defined in:
- lib/v20180608/models.rb
Overview
DescribeTables返回参数结构体
Instance Attribute Summary collapse
-
#Pager ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Tables ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tables = nil, pager = nil, requestid = nil) ⇒ DescribeTablesResponse
constructor
A new instance of DescribeTablesResponse.
Constructor Details
#initialize(tables = nil, pager = nil, requestid = nil) ⇒ DescribeTablesResponse
Returns a new instance of DescribeTablesResponse.
6047 6048 6049 6050 6051 |
# File 'lib/v20180608/models.rb', line 6047 def initialize(tables=nil, pager=nil, requestid=nil) @Tables = tables @Pager = pager @RequestId = requestid end |
Instance Attribute Details
#Pager ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6045 6046 6047 |
# File 'lib/v20180608/models.rb', line 6045 def Pager @Pager end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6045 6046 6047 |
# File 'lib/v20180608/models.rb', line 6045 def RequestId @RequestId end |
#Tables ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
6045 6046 6047 |
# File 'lib/v20180608/models.rb', line 6045 def Tables @Tables end |
Instance Method Details
#deserialize(params) ⇒ Object
6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 |
# File 'lib/v20180608/models.rb', line 6053 def deserialize(params) unless params['Tables'].nil? @Tables = [] params['Tables'].each do |i| tableinfo_tmp = TableInfo.new tableinfo_tmp.deserialize(i) @Tables << tableinfo_tmp end end unless params['Pager'].nil? @Pager = Pager.new @Pager.deserialize(params['Pager']) end @RequestId = params['RequestId'] end |