Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 938 Bytes

File metadata and controls

30 lines (21 loc) · 938 Bytes

TaskCollection

Collection of tasks.

Properties

Name Type Description Notes
tasks List[Task] [optional]

Example

from titanium_airflow_client.models.task_collection import TaskCollection

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

# convert the object into a dict
task_collection_dict = task_collection_instance.to_dict()
# create an instance of TaskCollection from a dict
task_collection_from_dict = TaskCollection.from_dict(task_collection_dict)

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