Class: TencentCloud::Tcaplusdb::V20190823::DescribeTablesInRecycleResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DescribeTablesInRecycleResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DescribeTablesInRecycle返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, tableinfos = nil, requestid = nil) ⇒ DescribeTablesInRecycleResponse
constructor
A new instance of DescribeTablesInRecycleResponse.
Constructor Details
#initialize(totalcount = nil, tableinfos = nil, requestid = nil) ⇒ DescribeTablesInRecycleResponse
Returns a new instance of DescribeTablesInRecycleResponse.
2066 2067 2068 2069 2070 |
# File 'lib/v20190823/models.rb', line 2066 def initialize(totalcount=nil, tableinfos=nil, requestid=nil) @TotalCount = totalcount @TableInfos = tableinfos @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
2064 2065 2066 |
# File 'lib/v20190823/models.rb', line 2064 def RequestId @RequestId end |
#TableInfos ⇒ Object
2064 2065 2066 |
# File 'lib/v20190823/models.rb', line 2064 def TableInfos @TableInfos end |
#TotalCount ⇒ Object
2064 2065 2066 |
# File 'lib/v20190823/models.rb', line 2064 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 |
# File 'lib/v20190823/models.rb', line 2072 def deserialize(params) @TotalCount = params['TotalCount'] unless params['TableInfos'].nil? @TableInfos = [] params['TableInfos'].each do |i| tableinfonew_tmp = TableInfoNew.new tableinfonew_tmp.deserialize(i) @TableInfos << tableinfonew_tmp end end @RequestId = params['RequestId'] end |