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

- old
+ new

@@ -2,23 +2,31 @@ ## 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] | + | **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;Label&gt;**](Label.md) | Array of items in the collection. | [optional][readonly] | +| **type** | **String** | The type of resource within a collection. | [optional][readonly] | + ## Example ```ruby require 'ionoscloud' + instance = Ionoscloud::Labels.new( - id: labels, - type: collection, href: <RESOURCE-URI>, - items: null + + id: labels, + + items: null, + + type: collection ) ```