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