# 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**](https://docs.ionos.com/sections-test/ruby-sdk/cloud-api-ruby-sdk/models/resourcelimits) | | \[optional] |

\| **status** | **String** | The contract status. | \[optional]\[readonly] |

## Example

```ruby
require 'ionoscloud'


instance = Ionoscloud::ContractProperties.new(
  contract_number: 12345,

  owner: user@example.com,

  reg_domain: ionos.de,

  resource_limits: null,

  status: BILLABLE
)
```
