> For the complete documentation index, see [llms.txt](https://docs.ionos.com/postgres-sdk-ruby/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/postgres-sdk-ruby/models/errorresponse.md).

# ErrorResponse

## Properties

| Name             | Type                                                                  | Description                            | Notes       |
| ---------------- | --------------------------------------------------------------------- | -------------------------------------- | ----------- |
| **http\_status** | **Integer**                                                           | The HTTP status code of the operation. | \[optional] |
| **messages**     | [**Array\<ErrorMessage>**](/postgres-sdk-ruby/models/errormessage.md) |                                        | \[optional] |

## Example

```ruby
require 'ionoscloud-dbaas-postgres'

instance = IonoscloudDbaasPostgres::ErrorResponse.new(
  http_status: 400,
  messages: null
)
```
