Class: TencentCloud::Tcaplusdb::V20190823::CompareIdlFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::CompareIdlFilesResponse
- Defined in:
- lib/v20190823/models.rb
Overview
CompareIdlFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(idlfiles = nil, totalcount = nil, tableinfos = nil, requestid = nil) ⇒ CompareIdlFilesResponse
constructor
A new instance of CompareIdlFilesResponse.
Constructor Details
#initialize(idlfiles = nil, totalcount = nil, tableinfos = nil, requestid = nil) ⇒ CompareIdlFilesResponse
Returns a new instance of CompareIdlFilesResponse.
533 534 535 536 537 538 |
# File 'lib/v20190823/models.rb', line 533 def initialize(idlfiles=nil, totalcount=nil, tableinfos=nil, requestid=nil) @IdlFiles = idlfiles @TotalCount = totalcount @TableInfos = tableinfos @RequestId = requestid end |
Instance Attribute Details
#IdlFiles ⇒ Object
531 532 533 |
# File 'lib/v20190823/models.rb', line 531 def IdlFiles @IdlFiles end |
#RequestId ⇒ Object
531 532 533 |
# File 'lib/v20190823/models.rb', line 531 def RequestId @RequestId end |
#TableInfos ⇒ Object
531 532 533 |
# File 'lib/v20190823/models.rb', line 531 def TableInfos @TableInfos end |
#TotalCount ⇒ Object
531 532 533 |
# File 'lib/v20190823/models.rb', line 531 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 |
# File 'lib/v20190823/models.rb', line 540 def deserialize(params) unless params['IdlFiles'].nil? @IdlFiles = [] params['IdlFiles'].each do |i| idlfileinfo_tmp = IdlFileInfo.new idlfileinfo_tmp.deserialize(i) @IdlFiles << idlfileinfo_tmp end end @TotalCount = params['TotalCount'] unless params['TableInfos'].nil? @TableInfos = [] params['TableInfos'].each do |i| parsedtableinfonew_tmp = ParsedTableInfoNew.new parsedtableinfonew_tmp.deserialize(i) @TableInfos << parsedtableinfonew_tmp end end @RequestId = params['RequestId'] end |