Health serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_processor | DagProcessorInfoResponse | [optional] | |
| metadatabase | BaseInfoResponse | ||
| scheduler | SchedulerInfoResponse | ||
| triggerer | TriggererInfoResponse |
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)