Interface HistoryReferenceWorkflowState

A references to a Story Workflow State.

interface HistoryReferenceWorkflowState {
    entity_type: string;
    id: string | number;
    name: string;
    type: "done" | "started" | "backlog" | "unstarted";
}

Properties

Properties

entity_type: string

The type of entity referenced.

id: string | number

The ID of the entity referenced.

name: string

The name of the entity referenced.

type: "done" | "started" | "backlog" | "unstarted"

Either "backlog", "unstarted", "started", or "done".