Jira.js - Jira Cloud API library
    Preparing search index...

    Interface WorkflowUpdate

    The details of the workflows to update.

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

    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
    statuses: StatusLayoutUpdate[]

    The statuses associated with this workflow.

    statusMappings?: StatusMappingDTO[]

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

    transitions: TransitionUpdateDTO[]

    The transitions of this workflow.