EntitiesInner1
Properties
| Name | Type | Description | Notes |
|---|
| dag_id | str | | [optional] |
| dag_run_id | str | | [optional] |
| include_downstream | bool | | [optional] [default to False] |
| include_future | bool | | [optional] [default to False] |
| include_past | bool | | [optional] [default to False] |
| include_upstream | bool | | [optional] [default to False] |
| map_index | int | | [optional] |
| new_state | TaskInstanceState | | [optional] |
| note | str | | [optional] |
| task_id | str | | |
Example
from airflow_client.client.models.entities_inner1 import EntitiesInner1
# TODO update the JSON string below
json = "{}"
# create an instance of EntitiesInner1 from a JSON string
entities_inner1_instance = EntitiesInner1.from_json(json)
# print the JSON string representation of the object
print(EntitiesInner1.to_json())
# convert the object into a dict
entities_inner1_dict = entities_inner1_instance.to_dict()
# create an instance of EntitiesInner1 from a dict
entities_inner1_from_dict = EntitiesInner1.from_dict(entities_inner1_dict)
[Back to Model list] [Back to API list] [Back to README]