Full representations of XCom entry.
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | [optional] | |
| timestamp | str | [optional] | |
| execution_date | str | [optional] | |
| map_index | int | [optional] | |
| task_id | str | [optional] | |
| dag_id | str | [optional] | |
| value | str | The value | [optional] |
from titanium_airflow_client.models.x_com import XCom
# TODO update the JSON string below
json = "{}"
# create an instance of XCom from a JSON string
x_com_instance = XCom.from_json(json)
# print the JSON string representation of the object
print(XCom.to_json())
# convert the object into a dict
x_com_dict = x_com_instance.to_dict()
# create an instance of XCom from a dict
x_com_from_dict = XCom.from_dict(x_com_dict)