VariableBody

Variable serializer for bodies.

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
keystr
valueobject

Example

from airflow_client.client.models.variable_body import VariableBody

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

# convert the object into a dict
variable_body_dict = variable_body_instance.to_dict()
# create an instance of VariableBody from a dict
variable_body_from_dict = VariableBody.from_dict(variable_body_dict)

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