ResponseClearDagRuns

Properties

NameTypeDescriptionNotes
task_instancesList[TaskInstancesInner]
total_entriesint
dag_runsList[DAGRunResponse]
next_cursorstr[optional]
previous_cursorstr[optional]

Example

from airflow_client.client.models.response_clear_dag_runs import ResponseClearDagRuns

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

# convert the object into a dict
response_clear_dag_runs_dict = response_clear_dag_runs_instance.to_dict()
# create an instance of ResponseClearDagRuns from a dict
response_clear_dag_runs_from_dict = ResponseClearDagRuns.from_dict(response_clear_dag_runs_dict)

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