Details about a workflow transition in preview context.

interface TransitionPreview {
    actions?: (null | PreviewRuleConfiguration)[];
    conditions?: null | PreviewConditionGroupConfiguration;
    customIssueEventId?: string;
    description?: string;
    id?: string;
    links?: TransitionLink[];
    name?: string;
    toStatusReference?: string;
    transitionScreen?: null | PreviewRuleConfiguration;
    triggers?: PreviewTrigger[];
    type?: "INITIAL" | "GLOBAL" | "DIRECTED";
    validators?: (null | PreviewRuleConfiguration)[];
}

Properties

actions?: (null | PreviewRuleConfiguration)[]

The post-functions of the transition.

Condition group configuration for workflow transitions.

customIssueEventId?: string

The custom issue event ID for the transition.

description?: string

The description of the transition.

id?: string

The ID of the transition.

links?: TransitionLink[]

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

name?: string

The name of the transition.

toStatusReference?: string

The status the transition goes to.

transitionScreen?: null | PreviewRuleConfiguration

Rule configuration for workflow transitions.

triggers?: PreviewTrigger[]

The triggers of the transition.

type?: "INITIAL" | "GLOBAL" | "DIRECTED"

The transition type.

validators?: (null | PreviewRuleConfiguration)[]

The validators of the transition.