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

    Interface WorkflowTransitions

    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.

    interface WorkflowTransitions {
        actions?: Version3Models.WorkflowRuleConfiguration[];
        conditions?: Version3Models.ConditionGroupConfiguration;
        customIssueEventId?: string;
        description?: string;
        from?: Version3Models.WorkflowStatusAndPort[];
        id?: string;
        links?: WorkflowTransitionLinks[];
        name?: string;
        properties?: unknown;
        to?: Version3Models.WorkflowStatusAndPort;
        toStatusReference?: string;
        transitionScreen?: Version3Models.WorkflowRuleConfiguration;
        triggers?: Version3Models.WorkflowTrigger[];
        type?: string;
        validators?: Version3Models.WorkflowRuleConfiguration[];
    }
    Index

    Properties

    The post-functions of the transition.

    customIssueEventId?: string

    The custom event ID of the transition.

    description?: string

    The description of the transition.

    The statuses and ports that the transition can start from. This field is deprecated - use toStatusReference/links instead.

    id?: string

    The ID of the transition.

    The statuses the transition can start from, and the mapping of ports between the statuses.

    name?: string

    The name of the transition.

    properties?: unknown

    The properties of the transition.

    toStatusReference?: string

    The status the transition goes to.

    The triggers of the transition.

    type?: string

    The transition type.

    The validators of the transition.