| Name | Type | Description | Notes |
|---|---|---|---|
| status | str |
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)