Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

VariableFormat.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

VariableFormat

Format for a variable definition.

Properties

Name Type Description Notes
type str
values List[PossibleValuesEnumDeclarationInner] [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]