Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

ActionsInner3

Properties

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]

Example

from airflow_client.client.models.actions_inner3 import ActionsInner3

# TODO update the JSON string below
json = "{}"
# create an instance of ActionsInner3 from a JSON string
actions_inner3_instance = ActionsInner3.from_json(json)
# print the JSON string representation of the object
print(ActionsInner3.to_json())

# convert the object into a dict
actions_inner3_dict = actions_inner3_instance.to_dict()
# create an instance of ActionsInner3 from a dict
actions_inner3_from_dict = ActionsInner3.from_dict(actions_inner3_dict)

[Back to Model list] [Back to API list] [Back to README]