| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| deleted | bool | [optional] | |
| key | str | [optional] | |
| type | str | ||
| value | str | [optional] |
from clientapi_atrocore.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_form_dict = variable.from_dict(variable_dict)