| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | A concise summary of the error used for categorization. | |
| description | str | A detailed explanation of the error. | |
| source | ErrorSource |
frombandwidth.models.error_objectimportErrorObject# TODO update the JSON string belowjson="{}"# create an instance of ErrorObject from a JSON stringerror_object_instance=ErrorObject.from_json(json)
# print the JSON string representation of the objectprint(ErrorObject.to_json())
# convert the object into a dicterror_object_dict=error_object_instance.to_dict()
# create an instance of ErrorObject from a dicterror_object_from_dict=ErrorObject.from_dict(error_object_dict)