blob: 10cf393cb6373d362482d7028bc5559d5f7c848b [file] [log] [blame] [view]
# BulkBodyVariableBodyActionsInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**action** | **str** | The action to be performed on the entities. |
**action_on_existence** | [**BulkActionOnExistence**](BulkActionOnExistence.md) | | [optional]
**entities** | [**List[BulkDeleteActionBulkTaskInstanceBodyEntitiesInner]**](BulkDeleteActionBulkTaskInstanceBodyEntitiesInner.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.bulk_body_variable_body_actions_inner import BulkBodyVariableBodyActionsInner
# TODO update the JSON string below
json = "{}"
# create an instance of BulkBodyVariableBodyActionsInner from a JSON string
bulk_body_variable_body_actions_inner_instance = BulkBodyVariableBodyActionsInner.from_json(json)
# print the JSON string representation of the object
print(BulkBodyVariableBodyActionsInner.to_json())
# convert the object into a dict
bulk_body_variable_body_actions_inner_dict = bulk_body_variable_body_actions_inner_instance.to_dict()
# create an instance of BulkBodyVariableBodyActionsInner from a dict
bulk_body_variable_body_actions_inner_from_dict = BulkBodyVariableBodyActionsInner.from_dict(bulk_body_variable_body_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)