Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

HealthInfoResponse

Health serializer for responses.

Properties

Name Type Description Notes
dag_processor DagProcessorInfoResponse [optional]
metadatabase BaseInfoResponse
scheduler SchedulerInfoResponse
triggerer TriggererInfoResponse

Example

from airflow_client.client.models.health_info_response import HealthInfoResponse

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

# convert the object into a dict
health_info_response_dict = health_info_response_instance.to_dict()
# create an instance of HealthInfoResponse from a dict
health_info_response_from_dict = HealthInfoResponse.from_dict(health_info_response_dict)

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