Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

TaskDependencyCollectionResponse

Task scheduling dependencies collection serializer for responses.

Properties

NameTypeDescriptionNotes
dependenciesList[TaskDependencyResponse]

Example

fromairflow_client.client.models.task_dependency_collection_responseimportTaskDependencyCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskDependencyCollectionResponse from a JSON stringtask_dependency_collection_response_instance=TaskDependencyCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskDependencyCollectionResponse.to_json())
# convert the object into a dicttask_dependency_collection_response_dict=task_dependency_collection_response_instance.to_dict()
# create an instance of TaskDependencyCollectionResponse from a dicttask_dependency_collection_response_from_dict=TaskDependencyCollectionResponse.from_dict(task_dependency_collection_response_dict)

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