Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.07 KB

Constraint.md

File metadata and controls

32 lines (24 loc) · 1.07 KB

Constraint

Properties

Name Type Description Notes
id str
type str the type of the constraint [optional]
title str the human-readable constraint title [optional]
description str the human-readable constraint description [optional]
parameters Dict[str, object] [optional]

Example

from alfresco_core_api_client.models.constraint import Constraint

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

# convert the object into a dict
constraint_dict = constraint_instance.to_dict()
# create an instance of Constraint from a dict
constraint_form_dict = constraint.from_dict(constraint_dict)

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