| Name | Type | Description | Notes |
|---|---|---|---|
| action | str | The action to be performed on the entities. | |
| action_on_non_existence | BulkActionNotOnExistence | [optional] | |
| entities | List[EntitiesInner] | A list of entity id/key or entity objects to be deleted. |
from airflow_client.client.models.bulk_delete_action_pool_body import BulkDeleteActionPoolBody
# TODO update the JSON string below
json = "{}"
# create an instance of BulkDeleteActionPoolBody from a JSON string
bulk_delete_action_pool_body_instance = BulkDeleteActionPoolBody.from_json(json)
# print the JSON string representation of the object
print(BulkDeleteActionPoolBody.to_json())
# convert the object into a dict
bulk_delete_action_pool_body_dict = bulk_delete_action_pool_body_instance.to_dict()
# create an instance of BulkDeleteActionPoolBody from a dict
bulk_delete_action_pool_body_from_dict = BulkDeleteActionPoolBody.from_dict(bulk_delete_action_pool_body_dict)