Class: TencentCloud::Tcaplusdb::V20190823::DeleteTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DeleteTablesResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DeleteTables返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ DeleteTablesResponse
constructor
A new instance of DeleteTablesResponse.
Constructor Details
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ DeleteTablesResponse
Returns a new instance of DeleteTablesResponse.
1344 1345 1346 1347 1348 |
# File 'lib/v20190823/models.rb', line 1344 def initialize(totalcount=nil, tableresults=nil, requestid=nil) @TotalCount = totalcount @TableResults = tableresults @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1342 1343 1344 |
# File 'lib/v20190823/models.rb', line 1342 def RequestId @RequestId end |
#TableResults ⇒ Object
1342 1343 1344 |
# File 'lib/v20190823/models.rb', line 1342 def TableResults @TableResults end |
#TotalCount ⇒ Object
1342 1343 1344 |
# File 'lib/v20190823/models.rb', line 1342 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 |
# File 'lib/v20190823/models.rb', line 1350 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 |