Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

HealthResponse

Properties

Name Type Description Notes
status str
name str [optional]
version str [optional]
environment str [optional]
docs str [optional]
checks HealthResponseChecks [optional]
timestamp str [optional]

Example

from ecuapi.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]