DagProcessorInfoResponse

DagProcessor info serializer for responses.

Properties

NameTypeDescriptionNotes
latest_dag_processor_heartbeatstr[optional]
statusstr[optional]

Example

from airflow_client.client.models.dag_processor_info_response import DagProcessorInfoResponse

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

# convert the object into a dict
dag_processor_info_response_dict = dag_processor_info_response_instance.to_dict()
# create an instance of DagProcessorInfoResponse from a dict
dag_processor_info_response_from_dict = DagProcessorInfoResponse.from_dict(dag_processor_info_response_dict)

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