Class: TencentCloud::Tcaplusdb::V20190823::DeleteTableDataFlowResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::DeleteTableDataFlowResponse
- Defined in:
- lib/v20190823/models.rb
Overview
DeleteTableDataFlow返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ DeleteTableDataFlowResponse
constructor
A new instance of DeleteTableDataFlowResponse.
Constructor Details
#initialize(totalcount = nil, tableresults = nil, requestid = nil) ⇒ DeleteTableDataFlowResponse
Returns a new instance of DeleteTableDataFlowResponse.
1188 1189 1190 1191 1192 |
# File 'lib/v20190823/models.rb', line 1188 def initialize(totalcount=nil, tableresults=nil, requestid=nil) @TotalCount = totalcount @TableResults = tableresults @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
1186 1187 1188 |
# File 'lib/v20190823/models.rb', line 1186 def RequestId @RequestId end |
#TableResults ⇒ Object
1186 1187 1188 |
# File 'lib/v20190823/models.rb', line 1186 def TableResults @TableResults end |
#TotalCount ⇒ Object
1186 1187 1188 |
# File 'lib/v20190823/models.rb', line 1186 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 |
# File 'lib/v20190823/models.rb', line 1194 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 |