XComResponseNative

XCom response serializer with native return type.

Properties

NameTypeDescriptionNotes
dag_idstr
keystr
logical_datedatetime[optional]
map_indexint
run_idstr
task_idstr
timestampdatetime
valueobject

Example

from airflow_client.client.models.x_com_response_native import XComResponseNative

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

# convert the object into a dict
x_com_response_native_dict = x_com_response_native_instance.to_dict()
# create an instance of XComResponseNative from a dict
x_com_response_native_from_dict = XComResponseNative.from_dict(x_com_response_native_dict)

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