Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

TaskInstanceHistoryCollectionResponse

TaskInstanceHistory Collection serializer for responses.

Properties

NameTypeDescriptionNotes
task_instancesList[TaskInstanceHistoryResponse]
total_entriesint

Example

fromairflow_client.client.models.task_instance_history_collection_responseimportTaskInstanceHistoryCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of TaskInstanceHistoryCollectionResponse from a JSON stringtask_instance_history_collection_response_instance=TaskInstanceHistoryCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(TaskInstanceHistoryCollectionResponse.to_json())
# convert the object into a dicttask_instance_history_collection_response_dict=task_instance_history_collection_response_instance.to_dict()
# create an instance of TaskInstanceHistoryCollectionResponse from a dicttask_instance_history_collection_response_from_dict=TaskInstanceHistoryCollectionResponse.from_dict(task_instance_history_collection_response_dict)

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