Class: TencentCloud::Tcaplusdb::V20190823::CreateTablesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::CreateTablesResponse
- Defined in:
- lib/v20190823/models.rb
Overview
CreateTables返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ CreateTablesResponse
constructor
A new instance of CreateTablesResponse.
Constructor Details
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ CreateTablesResponse
Returns a new instance of CreateTablesResponse.
931 932 933 934 935 |
# File 'lib/v20190823/models.rb', line 931 def initialize(totalcount=nil, tableresults=nil, requestid=nil) @TotalCount = totalcount @TableResults = tableresults @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
929 930 931 |
# File 'lib/v20190823/models.rb', line 929 def RequestId @RequestId end |
#TableResults ⇒ Object
929 930 931 |
# File 'lib/v20190823/models.rb', line 929 def TableResults @TableResults end |
#TotalCount ⇒ Object
929 930 931 |
# File 'lib/v20190823/models.rb', line 929 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
937 938 939 940 941 942 943 944 945 946 947 948 |
# File 'lib/v20190823/models.rb', line 937 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 |