@shortcut/client
    Preparing search index...

    Interface WorkflowState

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

    interface WorkflowState {
        color?: string;
        created_at: string;
        description: string;
        entity_type: string;
        global_id: string;
        id: number;
        name: string;
        num_stories: number;
        num_story_templates: number;
        position: number;
        type: string;
        updated_at: string;
        verb?: null | string;
    }
    Index

    Properties

    color?: string

    The hex color for this Workflow State.

    css-color

    1

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

    created_at: string

    The time/date the Workflow State was created.

    date-time

    description: string

    The description of what sort of Stories belong in that Workflow state.

    entity_type: string

    A string description of this resource.

    global_id: string
    id: number

    The unique ID of the Workflow State.

    int64

    name: string

    The Workflow State's name.

    num_stories: number

    The number of Stories currently in that Workflow State.

    int64

    num_story_templates

    num_story_templates: number

    The number of Story Templates associated with that Workflow State.

    int64

    position: number

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

    int64

    type: string

    The type of Workflow State (Unstarted, Started, or Finished)

    updated_at: string

    When the Workflow State was last updated.

    date-time

    verb?: null | string

    The verb that triggers a move to that Workflow State when making VCS commits.