TriggerDAGRunPostBody

Trigger DAG Run Serializer for POST body.

Properties

NameTypeDescriptionNotes
confobject[optional]
dag_run_idstr[optional]
data_interval_enddatetime[optional]
data_interval_startdatetime[optional]
logical_datedatetime[optional]
notestr[optional]
run_afterdatetime[optional]

Example

from airflow_client.client.models.trigger_dag_run_post_body import TriggerDAGRunPostBody

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

# convert the object into a dict
trigger_dag_run_post_body_dict = trigger_dag_run_post_body_instance.to_dict()
# create an instance of TriggerDAGRunPostBody from a dict
trigger_dag_run_post_body_from_dict = TriggerDAGRunPostBody.from_dict(trigger_dag_run_post_body_dict)

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