Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 868 Bytes

File metadata and controls

27 lines (20 loc) · 868 Bytes

HealthCheck

Properties

Name Type Description Notes
status object

Example

from unity_sps_ogc_processes_api_python_client.models.health_check import HealthCheck

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

# convert the object into a dict
health_check_dict = health_check_instance.to_dict()
# create an instance of HealthCheck from a dict
health_check_from_dict = HealthCheck.from_dict(health_check_dict)

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