| Name | Type | Description | Notes |
|---|---|---|---|
| variable_name | str | ||
| value | str |
from epiccore.models.env_var import EnvVar
# TODO update the JSON string below
json = "{}"
# create an instance of EnvVar from a JSON string
env_var_instance = EnvVar.from_json(json)
# print the JSON string representation of the object
print EnvVar.to_json()
# convert the object into a dict
env_var_dict = env_var_instance.to_dict()
# create an instance of EnvVar from a dict
env_var_form_dict = env_var.from_dict(env_var_dict)