Class: TencentCloud::Ssl::V20191205::DeployRecordList
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::DeployRecordList
- Defined in:
- lib/v20191205/models.rb
Overview
托管记录详情信息
Instance Attribute Summary collapse
-
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#ResourceType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(resourcetype = nil, list = nil, totalcount = nil) ⇒ DeployRecordList
constructor
A new instance of DeployRecordList.
Constructor Details
#initialize(resourcetype = nil, list = nil, totalcount = nil) ⇒ DeployRecordList
Returns a new instance of DeployRecordList.
2710 2711 2712 2713 2714 |
# File 'lib/v20191205/models.rb', line 2710 def initialize(resourcetype=nil, list=nil, totalcount=nil) @ResourceType = resourcetype @List = list @TotalCount = totalcount end |
Instance Attribute Details
#List ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2708 2709 2710 |
# File 'lib/v20191205/models.rb', line 2708 def List @List end |
#ResourceType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2708 2709 2710 |
# File 'lib/v20191205/models.rb', line 2708 def ResourceType @ResourceType end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
2708 2709 2710 |
# File 'lib/v20191205/models.rb', line 2708 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 |
# File 'lib/v20191205/models.rb', line 2716 def deserialize(params) @ResourceType = params['ResourceType'] unless params['List'].nil? @List = [] params['List'].each do |i| deployrecorditem_tmp = DeployRecordItem.new deployrecorditem_tmp.deserialize(i) @List << deployrecorditem_tmp end end @TotalCount = params['TotalCount'] end |