Skip to content

Latest commit

History

History
40 lines (31 loc) · 1.31 KB

File metadata and controls

40 lines (31 loc) · 1.31 KB

XComResponseString

XCom response serializer with string return type.

Properties

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

Example

fromairflow_client.client.models.x_com_response_stringimportXComResponseString# TODO update the JSON string belowjson="{}"# create an instance of XComResponseString from a JSON stringx_com_response_string_instance=XComResponseString.from_json(json)
# print the JSON string representation of the objectprint(XComResponseString.to_json())
# convert the object into a dictx_com_response_string_dict=x_com_response_string_instance.to_dict()
# create an instance of XComResponseString from a dictx_com_response_string_from_dict=XComResponseString.from_dict(x_com_response_string_dict)

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