Class: TencentCloud::Ssl::V20191205::DescribeHostUploadUpdateRecordResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20191205/models.rb

Overview

DescribeHostUploadUpdateRecord返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostUploadUpdateRecordResponse



5208
5209
5210
5211
5212
# File 'lib/v20191205/models.rb', line 5208

def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil)
  @TotalCount = totalcount
  @DeployRecordList = deployrecordlist
  @RequestId = requestid
end

Instance Attribute Details

#DeployRecordListObject



5206
5207
5208
# File 'lib/v20191205/models.rb', line 5206

def DeployRecordList
  @DeployRecordList
end

#RequestIdObject



5206
5207
5208
# File 'lib/v20191205/models.rb', line 5206

def RequestId
  @RequestId
end

#TotalCountObject



5206
5207
5208
# File 'lib/v20191205/models.rb', line 5206

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
# File 'lib/v20191205/models.rb', line 5214

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['DeployRecordList'].nil?
    @DeployRecordList = []
    params['DeployRecordList'].each do |i|
      uploadupdaterecordinfo_tmp = UploadUpdateRecordInfo.new
      uploadupdaterecordinfo_tmp.deserialize(i)
      @DeployRecordList << uploadupdaterecordinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end