An error response entry.
Name | Type | Description | Notes |
---|---|---|---|
code | str | The error code. | [optional] |
message | str | The error message. | [optional] |
more_info | str | Additional info about the error. | [optional] |
from pytagbase.models.error import Error
# TODO update the JSON string below
json = "{}"
# create an instance of Error from a JSON string
error_instance = Error.from_json(json)
# print the JSON string representation of the object
print Error.to_json()
# convert the object into a dict
error_dict = error_instance.to_dict()
# create an instance of Error from a dict
error_form_dict = error.from_dict(error_dict)