Class: TencentCloud::Tcaplusdb::V20190823::VerifyIdlFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::VerifyIdlFilesResponse
- Defined in:
- lib/v20190823/models.rb
Overview
VerifyIdlFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(idlfiles = nil, totalcount = nil, tableinfos = nil, requestid = nil) ⇒ VerifyIdlFilesResponse
constructor
A new instance of VerifyIdlFilesResponse.
Constructor Details
#initialize(idlfiles = nil, totalcount = nil, tableinfos = nil, requestid = nil) ⇒ VerifyIdlFilesResponse
Returns a new instance of VerifyIdlFilesResponse.
4825 4826 4827 4828 4829 4830 |
# File 'lib/v20190823/models.rb', line 4825 def initialize(idlfiles=nil, totalcount=nil, tableinfos=nil, requestid=nil) @IdlFiles = idlfiles @TotalCount = totalcount @TableInfos = tableinfos @RequestId = requestid end |
Instance Attribute Details
#IdlFiles ⇒ Object
4823 4824 4825 |
# File 'lib/v20190823/models.rb', line 4823 def IdlFiles @IdlFiles end |
#RequestId ⇒ Object
4823 4824 4825 |
# File 'lib/v20190823/models.rb', line 4823 def RequestId @RequestId end |
#TableInfos ⇒ Object
4823 4824 4825 |
# File 'lib/v20190823/models.rb', line 4823 def TableInfos @TableInfos end |
#TotalCount ⇒ Object
4823 4824 4825 |
# File 'lib/v20190823/models.rb', line 4823 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 |
# File 'lib/v20190823/models.rb', line 4832 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 |