# ErrorResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**code** | **string** | Error code | [optional] [default to undefined]
**message** | **string** | Human-readable error message | [optional] [default to undefined]
**details** | **string** | Additional details about the error, if available | [optional] [default to undefined]
**service** | **string** | The name of the service that generated the error | [optional] [default to undefined]

## Example

```typescript
import { ErrorResponse } from 'kalshi-typescript';

const instance: ErrorResponse = {
    code,
    message,
    details,
    service,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
