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

    Interface Workflow

    Details about a workflow.

    interface Workflow {
        created?: string;
        description: string;
        hasDraftWorkflow?: boolean;
        id: Version3Models.PublishedWorkflowId;
        isDefault?: boolean;
        operations?: Version3Models.WorkflowOperations;
        projects?: Version3Models.ProjectDetails[];
        schemes?: Version3Models.WorkflowSchemeIdName[];
        statuses?: Version3Models.WorkflowStatus[];
        transitions?: Version3Models.Transition[];
        updated?: string;
    }
    Index

    Properties

    created?: string

    The creation date of the workflow.

    description: string

    The description of the workflow.

    hasDraftWorkflow?: boolean

    Whether the workflow has a draft version.

    isDefault?: boolean

    Whether this is the default workflow.

    The projects the workflow is assigned to, through workflow schemes.

    The workflow schemes the workflow is assigned to.

    The statuses of the workflow.

    transitions?: Version3Models.Transition[]

    The transitions of the workflow.

    updated?: string

    The last edited date of the workflow.