ResponseGetXcomEntry
March 25, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_display_name | str | ||
| dag_id | str | ||
| key | str | ||
| logical_date | datetime | [optional] | |
| map_index | int | ||
| run_after | datetime | ||
| run_id | str | ||
| task_display_name | str | ||
| task_id | str | ||
| timestamp | datetime | ||
| value | str |
Example
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)