Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 846 Bytes

File metadata and controls

30 lines (21 loc) · 846 Bytes

ErrorError

Properties

Name Type Description Notes
code str
message str

Example

from ecuapi.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_from_dict = ErrorError.from_dict(error_error_dict)

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