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

    Interface WorkflowTransitions

    The transitions of the workflow.

    interface WorkflowTransitions {
        actions?: WorkflowRuleConfiguration[];
        conditions?: ConditionGroupConfiguration;
        customIssueEventId?: string;
        description?: string;
        from?: WorkflowStatusAndPort[];
        id?: string;
        name?: string;
        properties?: {};
        to?: WorkflowStatusAndPort;
        transitionScreen?: WorkflowRuleConfiguration;
        triggers?: WorkflowTrigger[];
        type?: string;
        validators?: 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 the transition can start from.

    id?: string

    The ID of the transition.

    name?: string

    The name of the transition.

    properties?: {}

    The properties of the transition.

    transitionScreen?: WorkflowRuleConfiguration
    triggers?: WorkflowTrigger[]

    The triggers of the transition.

    type?: string

    The transition type.

    The validators of the transition.