Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
36 lines (27 loc) · 1.03 KB

File metadata and controls

36 lines (27 loc) · 1.03 KB

XCom

Full representations of XCom entry.

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]