Class: TencentCloud::Ssl::V20191205::DescribeHostDeployRecordResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DescribeHostDeployRecordResponse
- Defined in:
- lib/v20191205/models.rb
Overview
DescribeHostDeployRecord返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostDeployRecordResponse
constructor
A new instance of DescribeHostDeployRecordResponse.
Constructor Details
#initialize(totalcount = nil, deployrecordlist = nil, requestid = nil) ⇒ DescribeHostDeployRecordResponse
Returns a new instance of DescribeHostDeployRecordResponse.
4659 4660 4661 4662 4663 |
# File 'lib/v20191205/models.rb', line 4659 def initialize(totalcount=nil, deployrecordlist=nil, requestid=nil) @TotalCount = totalcount @DeployRecordList = deployrecordlist @RequestId = requestid end |
Instance Attribute Details
#DeployRecordList ⇒ Object
4657 4658 4659 |
# File 'lib/v20191205/models.rb', line 4657 def DeployRecordList @DeployRecordList end |
#RequestId ⇒ Object
4657 4658 4659 |
# File 'lib/v20191205/models.rb', line 4657 def RequestId @RequestId end |
#TotalCount ⇒ Object
4657 4658 4659 |
# File 'lib/v20191205/models.rb', line 4657 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 |
# File 'lib/v20191205/models.rb', line 4665 def deserialize(params) @TotalCount = params['TotalCount'] unless params['DeployRecordList'].nil? @DeployRecordList = [] params['DeployRecordList'].each do |i| deployrecordinfo_tmp = DeployRecordInfo.new deployrecordinfo_tmp.deserialize(i) @DeployRecordList << deployrecordinfo_tmp end end @RequestId = params['RequestId'] end |