| Name | Type | Description | Notes |
|---|
| code | str | Stable, machine-readable error code. Versioned and documented. | |
| detail | str | Additional context where helpful (quota numbers, validation specifics, etc.). | [optional] |
| doc_url | str | Link to documentation explaining this error and resolution steps. | [optional] |
| message | str | Human-readable summary. Never contains internals. Suitable for direct display. | |
| trace_id | str | Correlation ID from the request. Quote this in support requests. | |
fromrevengai.models.error_bodyimportErrorBody# TODO update the JSON string belowjson="{}"# create an instance of ErrorBody from a JSON stringerror_body_instance=ErrorBody.from_json(json)
# print the JSON string representation of the objectprint(ErrorBody.to_json())
# convert the object into a dicterror_body_dict=error_body_instance.to_dict()
# create an instance of ErrorBody from a dicterror_body_from_dict=ErrorBody.from_dict(error_body_dict)[Back to Model list][Back to API list][Back to README]