tridion-sites-extensions-api-docs

Home > @tridion-sites/models > WhereUsedCommentToken

WhereUsedCommentToken type

Kind of relationship between this item and used item

Members: * parentItem - Specifies that the list item represents the (direct) BluePrint Parent Item of the given item. * localCopy - Specifies that the list item represents a Local Copy of the given item. * onlyOldVersions - Specifies that only old versions of the list item are referring to the given item. * onlyCheckedOutVersion - if only the checked-out version of an item refers to the given item. * unknownByClient - Special reserved value used to notify a legacy client about receiving an enumeration value added in a newer version of the service. Explicitly setting this value by a client is not allowed (it can only be set internally by the service), but client code should check it and be able to handle such cases.

Signature:

export type WhereUsedCommentToken =
    | 'parentItem'
    | 'localCopy'
    | 'onlyOldVersions'
    | 'onlyCheckedOutVersion'
    | 'unknownByClient';