Variable serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| is_encrypted | bool | ||
| key | str | ||
| value | str |
from airflow_client.client.models.variable_response import VariableResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VariableResponse from a JSON string
variable_response_instance = VariableResponse.from_json(json)
# print the JSON string representation of the object
print(VariableResponse.to_json())
# convert the object into a dict
variable_response_dict = variable_response_instance.to_dict()
# create an instance of VariableResponse from a dict
variable_response_from_dict = VariableResponse.from_dict(variable_response_dict)