@shortcut/client
    Preparing search index...

    Interface EpicWorkflow

    Epic Workflow is the array of defined Epic States. Epic Workflow can be queried using the API but must be updated in the Shortcut UI.

    interface EpicWorkflow {
        created_at: string;
        default_epic_state_id: number;
        entity_type: string;
        epic_states: EpicState[];
        id: number;
        updated_at: string;
    }
    Index

    Properties

    created_at: string

    The date the Epic Workflow was created.

    date-time

    default_epic_state_id: number

    The unique ID of the default Epic State that new Epics are assigned by default.

    int64

    entity_type: string

    A string description of this resource.

    epic_states: EpicState[]

    A map of the Epic States in this Epic Workflow.

    id: number

    The unique ID of the Epic Workflow.

    int64

    updated_at: string

    The date the Epic Workflow was updated.

    date-time