> For the complete documentation index, see [llms.txt](https://docs.ionos.com/mongodb-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/mongodb-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>**](/mongodb-sdk-ruby/models/errormessage.md) |                                        | \[optional] |

## Example

```ruby
require 'ionoscloud-dbaas-mongo'

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