Backfill collection serializer for responses in dry-run mode.
| Name | Type | Description | Notes |
|---|---|---|---|
| backfills | List[DryRunBackfillResponse] | ||
| total_entries | int |
from airflow_client.client.models.dry_run_backfill_collection_response import DryRunBackfillCollectionResponse # TODO update the JSON string below json = "{}" # create an instance of DryRunBackfillCollectionResponse from a JSON string dry_run_backfill_collection_response_instance = DryRunBackfillCollectionResponse.from_json(json) # print the JSON string representation of the object print(DryRunBackfillCollectionResponse.to_json()) # convert the object into a dict dry_run_backfill_collection_response_dict = dry_run_backfill_collection_response_instance.to_dict() # create an instance of DryRunBackfillCollectionResponse from a dict dry_run_backfill_collection_response_from_dict = DryRunBackfillCollectionResponse.from_dict(dry_run_backfill_collection_response_dict)