Task collection serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| tasks | List[TaskResponse] | ||
| total_entries | int |
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)