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

interface WorkflowTransitionLinks {
    fromPort?: null | number;
    fromStatusReference?: null | string;
    toPort?: null | number;
}

Properties

fromPort?: null | number

The port that the transition starts from.

fromStatusReference?: null | string

The status that the transition starts from.

toPort?: null | number

The port that the transition goes to.