Links

ContractProperties

Properties

| contract_number | Integer | The contract number. | [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 | | [optional] |
| status | String | The contract status. | [optional][readonly] |

Example

require 'ionoscloud'
instance = Ionoscloud::ContractProperties.new(
contract_number: 12345,
owner: user@example.com,
reg_domain: ionos.de,
resource_limits: null,
status: BILLABLE
)