DAGRunResponse

DAG Run serializer for responses.

Properties

NameTypeDescriptionNotes
bundle_versionstr[optional]
confobject[optional]
dag_display_namestr
dag_idstr
dag_run_idstr
dag_versionsList[DagVersionResponse]
data_interval_enddatetime[optional]
data_interval_startdatetime[optional]
durationfloat[optional]
end_datedatetime[optional]
last_scheduling_decisiondatetime[optional]
logical_datedatetime[optional]
notestr[optional]
queued_atdatetime[optional]
run_afterdatetime
run_typeDagRunType
start_datedatetime[optional]
stateDagRunState
triggered_byDagRunTriggeredByType[optional]
triggering_user_namestr[optional]

Example

from airflow_client.client.models.dag_run_response import DAGRunResponse

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

# convert the object into a dict
dag_run_response_dict = dag_run_response_instance.to_dict()
# create an instance of DAGRunResponse from a dict
dag_run_response_from_dict = DAGRunResponse.from_dict(dag_run_response_dict)

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