Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.04 KB

ErrorContainer.md

File metadata and controls

30 lines (22 loc) · 1.04 KB

ErrorContainer

An error response for an operation.

Properties

Name Type Description Notes
errors List[Error] The array of error entries associated with the error response [optional]
trace str The error trace information. [optional]

Example

from pytagbase.models.error_container import ErrorContainer

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

# convert the object into a dict
error_container_dict = error_container_instance.to_dict()
# create an instance of ErrorContainer from a dict
error_container_form_dict = error_container.from_dict(error_container_dict)

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