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

    Interface JiraWorkflow

    Details of a workflow.

    interface JiraWorkflow {
        created?: string;
        description?: string;
        id?: string;
        isEditable?: boolean;
        name?: string;
        scope?: Version3Models.WorkflowScope;
        startPointLayout?: Version3Models.WorkflowLayout;
        statuses?: Version3Models.WorkflowReferenceStatus[];
        taskId?: string;
        transitions?: Version3Models.WorkflowTransitions[];
        updated?: string;
        usages?: { issueTypes?: string[]; project?: { id: string } }[];
        version?: Version3Models.DocumentVersion;
    }
    Index

    Properties

    created?: string

    The creation date of the workflow.

    description?: string

    The description of the workflow.

    id?: string

    The ID of the workflow.

    isEditable?: boolean

    Indicates if the workflow can be edited.

    name?: string

    The name of the workflow.

    startPointLayout?: Version3Models.WorkflowLayout

    The statuses referenced in this workflow.

    taskId?: string

    If there is a current asynchronous task operation for this workflow.

    The transitions of the workflow. Note that a transition can have either the deprecated to/from fields or the toStatusReference/links fields, but never both nor a combination.

    updated?: string

    The last edited date of the workflow.

    usages?: { issueTypes?: string[]; project?: { id: string } }[]

    See the deprecation notice for details.

    Use the optional workflows.usages expand to get additional information about the projects and issue types associated with the requested workflows.