Class: TencentCloud::Tcb::V20180608::ListTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcb::V20180608::ListTablesResponse
- Defined in:
- lib/v20180608/models.rb
Overview
ListTables返回参数结构体
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) ⇒ ListTablesResponse
constructor
A new instance of ListTablesResponse.
Constructor Details
#initialize(tables = nil, pager = nil, requestid = nil) ⇒ ListTablesResponse
Returns a new instance of ListTablesResponse.
7443 7444 7445 7446 7447 |
# File 'lib/v20180608/models.rb', line 7443 def initialize(tables=nil, pager=nil, requestid=nil) @Tables = tables @Pager = pager @RequestId = requestid end |
Instance Attribute Details
#Pager ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7441 7442 7443 |
# File 'lib/v20180608/models.rb', line 7441 def Pager @Pager end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7441 7442 7443 |
# File 'lib/v20180608/models.rb', line 7441 def RequestId @RequestId end |
#Tables ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7441 7442 7443 |
# File 'lib/v20180608/models.rb', line 7441 def Tables @Tables end |
Instance Method Details
#deserialize(params) ⇒ Object
7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 |
# File 'lib/v20180608/models.rb', line 7449 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 |