@shortcut/client
    Preparing search index...

    Interface Label

    interface Label {
        app_url?: string;
        archived?: boolean;
        color?: string | null;
        created_at?: string;
        description?: string;
        entity_type?: "label";
        epics?: NestedEpicSlimList;
        external_id?: string | null;
        id?: number;
        name?: string;
        stories?: NestedStorySlimList;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    app_url?: string

    The Shortcut application url for the Label.

    2048

    ^https?://.+$

    archived?: boolean

    A true/false boolean indicating if the Label has been archived.

    color?: string | null

    The hex color to be displayed with the Label (for example, "#ff0000").

    created_at?: string

    The time/date that the Label was created.

    date-time

    description?: string

    The description of the Label.

    entity_type?: "label"

    The type of this entity.

    The Epics associated with the Objective.

    external_id?: string | null

    This field can be set to another unique ID. In the case that the Label has been imported from another tool, the ID in the other tool can be indicated here.

    id?: number

    The unique ID of the Label.

    int64

    name?: string

    The name of the Label.

    A list of Stories associated with this Project.

    updated_at?: string

    The time/date that the Label was updated.

    date-time

    uri?: string

    A resolvable URI for the entity that will return the full representation.

    2048

    ^https?://.+$