blob: 19390ff9d82df555e96a11d2d1f06d2195b63bdf [file] [view]
# ActionsInner1
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **str** | The action to be performed on the entities. |
**action_on_existence** | [**BulkActionOnExistence**](BulkActionOnExistence.md) | | [optional]
**entities** | [**List[EntitiesInner1]**](EntitiesInner1.md) | A list of entity id/key or entity objects to be deleted. |
**action_on_non_existence** | [**BulkActionNotOnExistence**](BulkActionNotOnExistence.md) | | [optional]
**update_mask** | **List[str]** | | [optional]
## Example
```python
from airflow_client.client.models.actions_inner1 import ActionsInner1
# TODO update the JSON string below
json = "{}"
# create an instance of ActionsInner1 from a JSON string
actions_inner1_instance = ActionsInner1.from_json(json)
# print the JSON string representation of the object
print(ActionsInner1.to_json())
# convert the object into a dict
actions_inner1_dict = actions_inner1_instance.to_dict()
# create an instance of ActionsInner1 from a dict
actions_inner1_from_dict = ActionsInner1.from_dict(actions_inner1_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)