Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

TaskCollectionResponse

Task collection serializer for responses.

Properties

NameTypeDescriptionNotes
tasksList[TaskResponse]
total_entriesint

Example

fromairflow_client.client.models.task_collection_responseimportTaskCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskCollectionResponse from a JSON stringtask_collection_response_instance=TaskCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskCollectionResponse.to_json())
# convert the object into a dicttask_collection_response_dict=task_collection_response_instance.to_dict()
# create an instance of TaskCollectionResponse from a dicttask_collection_response_from_dict=TaskCollectionResponse.from_dict(task_collection_response_dict)

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