ResponseGetXcomEntry

Properties

NameTypeDescriptionNotes
dag_display_namestr
dag_idstr
keystr
logical_datedatetime[optional]
map_indexint
run_idstr
task_display_namestr
task_idstr
timestampdatetime
valuestr

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)

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