Represents a tag set on an entry.

interface ITag {
    description?: string;
    displayName?: string;
    id?: number;
    isSecure?: boolean;
    name?: string;
    watermark?: LfRepositoryClientV2.TagDefinitionWatermark;
}

Implemented by

Properties

description?: string

The description of the tag definition.

displayName?: string

The localized name of the tag definition.

id?: number

The ID of the tag definition.

isSecure?: boolean

A boolean indicating whether or not the tag definition is classified as a security tag (true) or an informational tag (false).

name?: string

The name of the tag definition.

The watermark properties associated with the tag definition.