Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

BooleanValueConstraint.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

BooleanValueConstraint

Specifies that the value must be a boolean

Properties

Name Type Description Notes
type BooleanValueConstraintType [optional]

Example

from waylay.services.resources.models.boolean_value_constraint import BooleanValueConstraint

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

# convert the object into a dict
boolean_value_constraint_dict = boolean_value_constraint_instance.to_dict()
# create an instance of BooleanValueConstraint from a dict
boolean_value_constraint_form_dict = boolean_value_constraint.from_dict(boolean_value_constraint_dict)

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