CreateVariableOption the option when creating variable
| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | Value of the variable to create |
from openapi_client.models.create_variable_option import CreateVariableOption
# TODO update the JSON string below
json = "{}"
# create an instance of CreateVariableOption from a JSON string
create_variable_option_instance = CreateVariableOption.from_json(json)
# print the JSON string representation of the object
print(CreateVariableOption.to_json())
# convert the object into a dict
create_variable_option_dict = create_variable_option_instance.to_dict()
# create an instance of CreateVariableOption from a dict
create_variable_option_from_dict = CreateVariableOption.from_dict(create_variable_option_dict)