Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 957 Bytes

File metadata and controls

32 lines (23 loc) · 957 Bytes

HealthResponse

Properties

Name Type Description Notes
status str
timestamp datetime
db str
redis str

Example

from stratum.models.health_response import HealthResponse

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

# convert the object into a dict
health_response_dict = health_response_instance.to_dict()
# create an instance of HealthResponse from a dict
health_response_from_dict = HealthResponse.from_dict(health_response_dict)

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