Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 912 Bytes

File metadata and controls

31 lines (22 loc) · 912 Bytes

HealthStatus

Properties

Name Type Description Notes
status str
timestamp datetime
version str

Example

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)

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