@shortcut/client
    Preparing search index...

    Interface EpicState

    Epic State is any of the at least 3 columns. Epic States correspond to one of 3 types: Unstarted, Started, or Done.

    interface EpicState {
        color?: string;
        created_at: string;
        description: string;
        entity_type: string;
        global_id: string;
        id: number;
        name: string;
        position: number;
        type: string;
        updated_at: string;
    }
    Index

    Properties

    color?: string

    The hex color for this Epic State.

    css-color

    1

    ^#[a-fA-F0-9]{6}$

    created_at: string

    The time/date the Epic State was created.

    date-time

    description: string

    The description of what sort of Epics belong in that Epic State.

    entity_type: string

    A string description of this resource.

    global_id: string
    id: number

    The unique ID of the Epic State.

    int64

    name: string

    The Epic State's name.

    position: number

    The position that the Epic State is in, starting with 0 at the left.

    int64

    type: string

    The type of Epic State (Unstarted, Started, or Done)

    updated_at: string

    When the Epic State was last updated.

    date-time