docs/models/Error.md in ionoscloud-6.1.1 vs docs/models/Error.md in ionoscloud-6.1.2
- old
+ new
@@ -2,19 +2,23 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
+
| **http_status** | **Integer** | HTTP status code of the operation. | [optional][readonly] |
+
| **messages** | [**Array<ErrorMessage>**](ErrorMessage.md) | | [optional] |
## Example
```ruby
require 'ionoscloud'
+
instance = Ionoscloud::Error.new(
http_status: 400,
+
messages: null
)
```