Class: TencentCloud::Ess::V20201111::ContractSummary
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::ContractSummary
- Defined in:
- lib/v20201111/models.rb
Overview
合同摘要
Instance Attribute Summary collapse
-
#Infos ⇒ Object
Base 合同信息 Identity 主体信息 Performance 履约条款.
-
#Name ⇒ Object
Base 合同信息 Identity 主体信息 Performance 履约条款.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, infos = nil) ⇒ ContractSummary
constructor
A new instance of ContractSummary.
Constructor Details
#initialize(name = nil, infos = nil) ⇒ ContractSummary
Returns a new instance of ContractSummary.
1824 1825 1826 1827 |
# File 'lib/v20201111/models.rb', line 1824 def initialize(name=nil, infos=nil) @Name = name @Infos = infos end |
Instance Attribute Details
#Infos ⇒ Object
Base 合同信息 Identity 主体信息 Performance 履约条款
1822 1823 1824 |
# File 'lib/v20201111/models.rb', line 1822 def Infos @Infos end |
#Name ⇒ Object
Base 合同信息 Identity 主体信息 Performance 履约条款
1822 1823 1824 |
# File 'lib/v20201111/models.rb', line 1822 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/v20201111/models.rb', line 1829 def deserialize(params) @Name = params['Name'] unless params['Infos'].nil? @Infos = [] params['Infos'].each do |i| = ContractSummaryInfo.new .deserialize(i) @Infos << end end end |