Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 844 Bytes

File metadata and controls

30 lines (21 loc) · 844 Bytes

ErrorBody

Properties

Name Type Description Notes
error str
timestamp datetime

Example

from queueflow.models.error_body import ErrorBody

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

# convert the object into a dict
error_body_dict = error_body_instance.to_dict()
# create an instance of ErrorBody from a dict
error_body_from_dict = ErrorBody.from_dict(error_body_dict)

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