blob: 3bee189ed783534a552fdc9c3f763e70079bbb01 [file] [view]
# EntitiesInner
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**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**](TaskInstanceState.md) | | [optional]
**note** | **str** | | [optional]
**task_id** | **str** | |
## Example
```python
from airflow_client.client.models.entities_inner import EntitiesInner
# TODO update the JSON string below
json = "{}"
# create an instance of EntitiesInner from a JSON string
entities_inner_instance = EntitiesInner.from_json(json)
# print the JSON string representation of the object
print(EntitiesInner.to_json())
# convert the object into a dict
entities_inner_dict = entities_inner_instance.to_dict()
# create an instance of EntitiesInner from a dict
entities_inner_from_dict = EntitiesInner.from_dict(entities_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)