docs/models/Servers.md in ionoscloud-6.1.1 vs docs/models/Servers.md in ionoscloud-6.1.2
- old
+ new
@@ -2,29 +2,43 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **id** | **String** | The resource's unique identifier. | [optional][readonly] |
-| **type** | [**Type**](Type.md) | The type of object that has been created. | [optional] |
+
+| **_links** | [**PaginationLinks**](PaginationLinks.md) | | [optional] |
+
| **href** | **String** | URL to the object representation (absolute path). | [optional][readonly] |
+
+| **id** | **String** | The resource's unique identifier. | [optional][readonly] |
+
| **items** | [**Array<Server>**](Server.md) | Array of items in the collection. | [optional][readonly] |
-| **offset** | **Float** | The offset (if specified in the request). | [optional] |
+
| **limit** | **Float** | The limit (if specified in the request). | [optional] |
-| **_links** | [**PaginationLinks**](PaginationLinks.md) | | [optional] |
+| **offset** | **Float** | The offset (if specified in the request). | [optional] |
+
+| **type** | [**Type**](Type.md) | The type of object that has been created. | [optional] |
+
## Example
```ruby
require 'ionoscloud'
+
instance = Ionoscloud::Servers.new(
- id: 15f67991-0f51-4efc-a8ad-ef1fb31a480c,
- type: "collection",
+ _links: null,
+
href: <RESOURCE-URI>,
+
+ id: 15f67991-0f51-4efc-a8ad-ef1fb31a480c,
+
items: null,
- offset: 0,
+
limit: 1000,
- _links: null
+
+ offset: 0,
+
+ type: "collection"
)
```