Interface TagAttributesBeta

Represents tag attributes with optional color and group.

interface TagAttributes {
    color?: string;
    group?: string;
    order?: number;
    os_item_name: string;
    os_workspace: string;
}

Hierarchy (view full)

Properties

color?: string

The color of the item.

group?: string

The group to which the tag belongs.

order?: number

The order of the tag in the group. Lower values are displayed first.

os_item_name: string

The name of the tag.

os_workspace: string

The id of the workspace in which the tag is stored.