blob: f92714179fb09036f60b9e6411e9499920bdc53b [file] [log] [blame] [view]
# ResponseGetXcomEntry
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dag_display_name** | **str** | |
**dag_id** | **str** | |
**key** | **str** | |
**logical_date** | **datetime** | | [optional]
**map_index** | **int** | |
**run_id** | **str** | |
**task_id** | **str** | |
**timestamp** | **datetime** | |
**value** | **str** | |
## Example
```python
from airflow_client.client.models.response_get_xcom_entry import ResponseGetXcomEntry
# TODO update the JSON string below
json = "{}"
# create an instance of ResponseGetXcomEntry from a JSON string
response_get_xcom_entry_instance = ResponseGetXcomEntry.from_json(json)
# print the JSON string representation of the object
print(ResponseGetXcomEntry.to_json())
# convert the object into a dict
response_get_xcom_entry_dict = response_get_xcom_entry_instance.to_dict()
# create an instance of ResponseGetXcomEntry from a dict
response_get_xcom_entry_from_dict = ResponseGetXcomEntry.from_dict(response_get_xcom_entry_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)