Format for a variable definition.
Name | Type | Description | Notes |
---|---|---|---|
type | str | ||
values | List[PossibleValuesEnumDeclarationInner] | [optional] |
from waylay.services.rules.models.variable_format import VariableFormat
# TODO update the JSON string below
json = "{}"
# create an instance of VariableFormat from a JSON string
variable_format_instance = VariableFormat.from_json(json)
# print the JSON string representation of the object
print VariableFormat.to_json()
# convert the object into a dict
variable_format_dict = variable_format_instance.to_dict()
# create an instance of VariableFormat from a dict
variable_format_form_dict = variable_format.from_dict(variable_format_dict)