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

    Interface WorkflowCreate

    The details of the workflows to create.

    interface WorkflowCreate {
        description?: string;
        name: string;
        startPointLayout?: WorkflowLayout;
        statuses: StatusLayoutUpdate[];
        transitions: TransitionUpdateDTO[];
    }
    Index

    Properties

    description?: string

    The description of the workflow to create.

    name: string

    The name of the workflow to create.

    startPointLayout?: WorkflowLayout
    statuses: StatusLayoutUpdate[]

    The statuses associated with this workflow.

    transitions: TransitionUpdateDTO[]

    The transitions of this workflow.