Class: TencentCloud::Tcaplusdb::V20190823::ModifyTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::ModifyTablesResponse
- Defined in:
- lib/v20190823/models.rb
Overview
ModifyTables返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ ModifyTablesResponse
constructor
A new instance of ModifyTablesResponse.
Constructor Details
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ ModifyTablesResponse
Returns a new instance of ModifyTablesResponse.
3421 3422 3423 3424 3425 |
# File 'lib/v20190823/models.rb', line 3421 def initialize(totalcount=nil, tableresults=nil, requestid=nil) @TotalCount = totalcount @TableResults = tableresults @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
3419 3420 3421 |
# File 'lib/v20190823/models.rb', line 3419 def RequestId @RequestId end |
#TableResults ⇒ Object
3419 3420 3421 |
# File 'lib/v20190823/models.rb', line 3419 def TableResults @TableResults end |
#TotalCount ⇒ Object
3419 3420 3421 |
# File 'lib/v20190823/models.rb', line 3419 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 |
# File 'lib/v20190823/models.rb', line 3427 def deserialize(params) @TotalCount = params['TotalCount'] unless params['TableResults'].nil? @TableResults = [] params['TableResults'].each do |i| tableresultnew_tmp = TableResultNew.new tableresultnew_tmp.deserialize(i) @TableResults << tableresultnew_tmp end end @RequestId = params['RequestId'] end |