BackfillCollectionResponse

Backfill Collection serializer for responses.

Properties

NameTypeDescriptionNotes
backfillsList[BackfillResponse]
total_entriesint

Example

from airflow_client.client.models.backfill_collection_response import BackfillCollectionResponse

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

# convert the object into a dict
backfill_collection_response_dict = backfill_collection_response_instance.to_dict()
# create an instance of BackfillCollectionResponse from a dict
backfill_collection_response_from_dict = BackfillCollectionResponse.from_dict(backfill_collection_response_dict)

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