| Name | Type | Description | Notes |
|---|---|---|---|
| status | str | ||
| name | str | [optional] | |
| version | str | [optional] | |
| environment | str | [optional] | |
| docs | str | [optional] | |
| checks | HealthResponseChecks | [optional] | |
| timestamp | str | [optional] |
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)