Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 874 Bytes

File metadata and controls

30 lines (21 loc) · 874 Bytes

GenericError

Properties

Name Type Description Notes
error str
retryable bool

Example

from oden.models.generic_error import GenericError

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

# convert the object into a dict
generic_error_dict = generic_error_instance.to_dict()
# create an instance of GenericError from a dict
generic_error_from_dict = GenericError.from_dict(generic_error_dict)

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