| Name | Type | Description | Notes |
|---|---|---|---|
| error | ErrorBody |
fromrevengai.models.api_errorimportAPIError# TODO update the JSON string belowjson="{}"# create an instance of APIError from a JSON stringapi_error_instance=APIError.from_json(json)
# print the JSON string representation of the objectprint(APIError.to_json())
# convert the object into a dictapi_error_dict=api_error_instance.to_dict()
# create an instance of APIError from a dictapi_error_from_dict=APIError.from_dict(api_error_dict)