| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | Short description of the problem. | |
| details | str | Longer description of this specific instance of the problem. | [optional] |
| source | ErrorSource |
from talon_one.models.api_error import APIError
# TODO update the JSON string below
json = "{}"
# create an instance of APIError from a JSON string
api_error_instance = APIError.from_json(json)
# print the JSON string representation of the object
print(APIError.to_json())
# convert the object into a dict
api_error_dict = api_error_instance.to_dict()
# create an instance of APIError from a dict
api_error_from_dict = APIError.from_dict(api_error_dict)