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.
4950 4951 4952 4953 4954 4955 |
# File 'lib/v20190823/models.rb', line 4950 def initialize(idlfiles=nil, totalcount=nil, tableinfos=nil, requestid=nil) @IdlFiles = idlfiles @TotalCount = totalcount @TableInfos = tableinfos @RequestId = requestid end |
Instance Attribute Details
#IdlFiles ⇒ Object
4948 4949 4950 |
# File 'lib/v20190823/models.rb', line 4948 def IdlFiles @IdlFiles end |
#RequestId ⇒ Object
4948 4949 4950 |
# File 'lib/v20190823/models.rb', line 4948 def RequestId @RequestId end |
#TableInfos ⇒ Object
4948 4949 4950 |
# File 'lib/v20190823/models.rb', line 4948 def TableInfos @TableInfos end |
#TotalCount ⇒ Object
4948 4949 4950 |
# File 'lib/v20190823/models.rb', line 4948 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 |
# File 'lib/v20190823/models.rb', line 4957 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 |