Default value for the variable
Name | Type | Description | Notes |
---|
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)