docs/models/LabelResources.md in ionoscloud-6.1.1 vs docs/models/LabelResources.md in ionoscloud-6.1.2

- old
+ new

@@ -2,29 +2,43 @@ ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | -| **id** | **String** | A unique representation of the label as a resource collection. | [optional][readonly] | -| **type** | **String** | The type of resource within a collection. | [optional][readonly] | + +| **_links** | [**PaginationLinks**](PaginationLinks.md) | | [optional] | + | **href** | **String** | URL to the collection representation (absolute path). | [optional][readonly] | + +| **id** | **String** | A unique representation of the label as a resource collection. | [optional][readonly] | + | **items** | [**Array&lt;LabelResource&gt;**](LabelResource.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** | **String** | The type of resource within a collection. | [optional][readonly] | + ## Example ```ruby require 'ionoscloud' + instance = Ionoscloud::LabelResources.new( - id: labels, - type: collection, + _links: null, + href: <RESOURCE-URI>, + + id: labels, + items: null, - offset: 0, + limit: 1000, - _links: null + + offset: 0, + + type: collection ) ```