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

    Interface TransitionUpdateDTO

    The transitions of this workflow.

    interface TransitionUpdateDTO {
        actions?: WorkflowRuleConfiguration[];
        conditions?: ConditionGroupUpdate;
        customIssueEventId?: string;
        description?: string;
        from?: StatusReferenceAndPort[];
        id: string;
        name: string;
        properties?: {};
        to?: StatusReferenceAndPort;
        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.