| Name |
Type |
Description |
Notes |
| status |
str |
|
[optional] [default to 'healthy'] |
| database_ts |
datetime |
|
|
from ksapi.models.health_check_response import HealthCheckResponse
# TODO update the JSON string below
json = "{}"
# create an instance of HealthCheckResponse from a JSON string
health_check_response_instance = HealthCheckResponse.from_json(json)
# print the JSON string representation of the object
print(HealthCheckResponse.to_json())
# convert the object into a dict
health_check_response_dict = health_check_response_instance.to_dict()
# create an instance of HealthCheckResponse from a dict
health_check_response_from_dict = HealthCheckResponse.from_dict(health_check_response_dict)
[Back to Model list] [Back to API list] [Back to README]