Skip to content

Latest commit

History

History
31 lines (22 loc) · 1010 Bytes

File metadata and controls

31 lines (22 loc) · 1010 Bytes

ErrorObject

Properties

NameTypeDescriptionNotes
typestrA concise summary of the error used for categorization.
descriptionstrA detailed explanation of the error.
sourceErrorSource

Example

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)

[Back to Model list][Back to API list][Back to README]