Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.05 KB

ActionConstraintData.md

File metadata and controls

29 lines (21 loc) · 1.05 KB

ActionConstraintData

Properties

Name Type Description Notes
value str Constraint value (this can also be a node id)
label str Constraint display label [optional]

Example

from alfresco_core_api_client.models.action_constraint_data import ActionConstraintData

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

# convert the object into a dict
action_constraint_data_dict = action_constraint_data_instance.to_dict()
# create an instance of ActionConstraintData from a dict
action_constraint_data_form_dict = action_constraint_data.from_dict(action_constraint_data_dict)

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