Variable serializer for bodies.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| key | str | ||
| value | object |
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)