Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

VariableDeclarationDefaultValue.md

File metadata and controls

29 lines (20 loc) · 1.1 KB

VariableDeclarationDefaultValue

Default value for the variable

Properties

Name Type Description Notes

Example

from waylay.services.rules.models.variable_declaration_default_value import VariableDeclarationDefaultValue

# TODO update the JSON string below
json = "{}"
# create an instance of VariableDeclarationDefaultValue from a JSON string
variable_declaration_default_value_instance = VariableDeclarationDefaultValue.from_json(json)
# print the JSON string representation of the object
print VariableDeclarationDefaultValue.to_json()

# convert the object into a dict
variable_declaration_default_value_dict = variable_declaration_default_value_instance.to_dict()
# create an instance of VariableDeclarationDefaultValue from a dict
variable_declaration_default_value_form_dict = variable_declaration_default_value.from_dict(variable_declaration_default_value_dict)

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