XCom response serializer with string return type.
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_display_name | str | ||
| dag_id | str | ||
| key | str | ||
| logical_date | datetime | [optional] | |
| map_index | int | ||
| run_after | datetime | ||
| run_id | str | ||
| task_display_name | str | ||
| task_id | str | ||
| timestamp | datetime | ||
| value | str | [optional] |
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)