blob: f46b7400c1f99c8a5069fcd7d31add4ea30cb9ac [file] [view]
# ActionsInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **str** | The action to be performed on the entities. |
**action_on_existence** | [**BulkActionOnExistence**](BulkActionOnExistence.md) | | [optional]
**entities** | [**List[EntitiesInner]**](EntitiesInner.md) | A list of entity id/key or entity objects to be deleted. |
**action_on_non_existence** | [**BulkActionNotOnExistence**](BulkActionNotOnExistence.md) | | [optional]
## Example
```python
from airflow_client.client.models.actions_inner import ActionsInner
# TODO update the JSON string below
json = "{}"
# create an instance of ActionsInner from a JSON string
actions_inner_instance = ActionsInner.from_json(json)
# print the JSON string representation of the object
print(ActionsInner.to_json())
# convert the object into a dict
actions_inner_dict = actions_inner_instance.to_dict()
# create an instance of ActionsInner from a dict
actions_inner_from_dict = ActionsInner.from_dict(actions_inner_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)