Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1023 Bytes

ErrorError.md

File metadata and controls

33 lines (25 loc) · 1023 Bytes

ErrorError

Properties

Name Type Description Notes
error_key str [optional]
status_code int
brief_summary str
stack_trace str
description_url str
log_id str [optional]

Example

from alfresco_core_api_client.models.error_error import ErrorError

# TODO update the JSON string below
json = "{}"
# create an instance of ErrorError from a JSON string
error_error_instance = ErrorError.from_json(json)
# print the JSON string representation of the object
print ErrorError.to_json()

# convert the object into a dict
error_error_dict = error_error_instance.to_dict()
# create an instance of ErrorError from a dict
error_error_form_dict = error_error.from_dict(error_error_dict)

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