XComUpdateBody

Payload serializer for updating an XCom entry.

Properties

NameTypeDescriptionNotes
map_indexint[optional] [default to -1]
valueobject

Example

from airflow_client.client.models.x_com_update_body import XComUpdateBody

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

# convert the object into a dict
x_com_update_body_dict = x_com_update_body_instance.to_dict()
# create an instance of XComUpdateBody from a dict
x_com_update_body_from_dict = XComUpdateBody.from_dict(x_com_update_body_dict)

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