Details of a workflow transition.

interface Transition {
    description: string;
    from: string[];
    id: string;
    name: string;
    properties?: {};
    rules?: Version3.Version3Models.WorkflowRules;
    screen?: ScreenID;
    to: string;
    type: string;
}

Properties

description: string

The description of the transition.

from: string[]

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.

Type declaration

    screen?: ScreenID
    to: string

    The status the transition goes to.

    type: string

    The type of the transition.