Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1010 Bytes

File metadata and controls

31 lines (22 loc) · 1010 Bytes

HealthResponseChecks

Properties

Name Type Description Notes
api str
database str
storage str

Example

from ecuapi.models.health_response_checks import HealthResponseChecks

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

# convert the object into a dict
health_response_checks_dict = health_response_checks_instance.to_dict()
# create an instance of HealthResponseChecks from a dict
health_response_checks_from_dict = HealthResponseChecks.from_dict(health_response_checks_dict)

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