| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | ||
| timestamp | datetime | ||
| version | str |
from queueflow.models.health_status import HealthStatus
# TODO update the JSON string below
json = "{}"
# create an instance of HealthStatus from a JSON string
health_status_instance = HealthStatus.from_json(json)
# print the JSON string representation of the object
print(HealthStatus.to_json())
# convert the object into a dict
health_status_dict = health_status_instance.to_dict()
# create an instance of HealthStatus from a dict
health_status_from_dict = HealthStatus.from_dict(health_status_dict)