@shortcut/client
    Preparing search index...

    Interface Category

    interface Category {
        archived?: boolean;
        color?: string | null;
        created_at?: string;
        entity_type?: "category";
        external_id?: string | null;
        id?: number;
        name?: string;
        updated_at?: string;
        uri?: string;
    }
    Index

    Properties

    archived?: boolean

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

    color?: string | null

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

    created_at?: string

    The time/date the Category was created.

    date-time

    entity_type?: "category"

    The type of this entity.

    external_id?: string | null

    An optional external ID for the Category.

    id?: number

    The unique ID of the Category.

    int64

    name?: string

    The name of the Category.

    128

    updated_at?: string

    The time/date the Category was last updated.

    date-time

    uri?: string

    A resolvable URI for the entity.

    2048

    ^https?://.+$