Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 836 Bytes

File metadata and controls

29 lines (20 loc) · 836 Bytes

ReadyStatus

Properties

Name Type Description Notes
status str

Example

from queueflow.models.ready_status import ReadyStatus

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

# convert the object into a dict
ready_status_dict = ready_status_instance.to_dict()
# create an instance of ReadyStatus from a dict
ready_status_from_dict = ReadyStatus.from_dict(ready_status_dict)

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