Skip to content
This repository has been archived by the owner on Aug 26, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 866 Bytes

HealthCheck.md

File metadata and controls

29 lines (20 loc) · 866 Bytes

HealthCheck

Properties

Name Type Description Notes
status str [optional] [default to 'OK']

Example

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