| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | [optional] | |
| value | str | [optional] |
from quantcdn.models.variable import Variable
# TODO update the JSON string below
json = "{}"
# create an instance of Variable from a JSON string
variable_instance = Variable.from_json(json)
# print the JSON string representation of the object
print(Variable.to_json())
# convert the object into a dict
variable_dict = variable_instance.to_dict()
# create an instance of Variable from a dict
variable_from_dict = Variable.from_dict(variable_dict)