docs/models/ContractProperties.md in ionoscloud-6.1.1 vs docs/models/ContractProperties.md in ionoscloud-6.1.2
- old
+ new
@@ -2,25 +2,35 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
+
| **contract_number** | **Integer** | The contract number. | [optional][readonly] |
-| **owner** | **String** | The owner of the contract. | [optional][readonly] |
-| **status** | **String** | The status of the contract. | [optional][readonly] |
+
+| **owner** | **String** | The contract owner's user name. | [optional][readonly] |
+
| **reg_domain** | **String** | The registration domain of the contract. | [optional][readonly] |
+
| **resource_limits** | [**ResourceLimits**](ResourceLimits.md) | | [optional] |
+| **status** | **String** | The contract status. | [optional][readonly] |
+
## Example
```ruby
require 'ionoscloud'
+
instance = Ionoscloud::ContractProperties.new(
- contract_number: null,
- owner: null,
- status: null,
- reg_domain: null,
- resource_limits: null
+ contract_number: 12345,
+
+ owner: user@example.com,
+
+ reg_domain: ionos.de,
+
+ resource_limits: null,
+
+ status: BILLABLE
)
```