XComResponseString

XCom response serializer with string return type.

Properties

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

Example

from airflow_client.client.models.x_com_response_string import XComResponseString

# TODO update the JSON string below
json = "{}"
# create an instance of XComResponseString from a JSON string
x_com_response_string_instance = XComResponseString.from_json(json)
# print the JSON string representation of the object
print(XComResponseString.to_json())

# convert the object into a dict
x_com_response_string_dict = x_com_response_string_instance.to_dict()
# create an instance of XComResponseString from a dict
x_com_response_string_from_dict = XComResponseString.from_dict(x_com_response_string_dict)

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