@shortcut/client
    Preparing search index...

    Interface EpicState

    interface EpicState {
        color?: string | null;
        created_at?: string;
        description?: string;
        entity_type?: "epic-state";
        id?: number;
        name?: string;
        position?: number;
        type?: string;
        updated_at?: string;
    }
    Index

    Properties

    color?: string | null

    The color of the Epic State.

    created_at?: string

    The time/date the Epic State was created.

    date-time

    description?: string

    The description of the Epic State.

    entity_type?: "epic-state"

    The type of this entity.

    id?: number

    The unique ID of the Epic State.

    int64

    name?: string

    The name of the Epic State.

    position?: number

    The position of the Epic State.

    int64

    type?: string

    The type of the Epic State (unstarted, started, done).

    updated_at?: string

    The time/date the Epic State was last updated.

    date-time