The details of the workflows to update.

interface WorkflowUpdate {
    defaultStatusMappings?: StatusMigration[];
    description?: string;
    id: string;
    startPointLayout?: WorkflowLayout;
    statusMappings?: StatusMappingDTO[];
    statuses: StatusLayoutUpdate[];
    transitions: TransitionUpdateDTO[];
    version: DocumentVersion;
}

Properties

defaultStatusMappings?: StatusMigration[]

The mapping of old to new status ID.

description?: string

The new description for this workflow.

id: string

The ID of this workflow.

startPointLayout?: WorkflowLayout
statusMappings?: StatusMappingDTO[]

The mapping of old to new status ID for a specific project and issue type.

statuses: StatusLayoutUpdate[]

The statuses associated with this workflow.

transitions: TransitionUpdateDTO[]

The transitions of this workflow.