tridion-sites-extensions-api-docs

Home > @tridion-sites/open-api-client > ActivityConstraints

ActivityConstraints enum

Defines the constraints of an Activity Instance.

Members: * None - Does not have any constraints.

* DenyBundleMetadataEditing - Denies editing Metadata of a Bundle in workflow.

* DenySubjectEditing - Denies editing Subject in workflow.

* DenyAddRemoveWorkItem - Denies adding/removing work items to/from the Activity.

* UnknownByClient - Special reserved value used to notify an older API version client about the presence of an enumeration member added in a later API version. Explicitly setting this value by a client is not allowed, but client code should check it and be able to handle such cases.

Signature:

export declare enum ActivityConstraints

Enumeration Members

Member Value Description
DENY_ADD_REMOVE_WORK_ITEM "DenyAddRemoveWorkItem"  
DENY_BUNDLE_METADATA_EDITING "DenyBundleMetadataEditing"  
DENY_SUBJECT_EDITING "DenySubjectEditing"  
NONE "None"  
UNKNOWN_BY_CLIENT "UnknownByClient"