Response for clear dag run dry run, which may contain new tasks without full TaskInstance data.
| Name | Type | Description | Notes |
|---|---|---|---|
| task_instances | List[TaskInstancesInner] | ||
| total_entries | int |
from airflow_client.client.models.clear_task_instance_collection_response import ClearTaskInstanceCollectionResponse # TODO update the JSON string below json = "{}" # create an instance of ClearTaskInstanceCollectionResponse from a JSON string clear_task_instance_collection_response_instance = ClearTaskInstanceCollectionResponse.from_json(json) # print the JSON string representation of the object print(ClearTaskInstanceCollectionResponse.to_json()) # convert the object into a dict clear_task_instance_collection_response_dict = clear_task_instance_collection_response_instance.to_dict() # create an instance of ClearTaskInstanceCollectionResponse from a dict clear_task_instance_collection_response_from_dict = ClearTaskInstanceCollectionResponse.from_dict(clear_task_instance_collection_response_dict)