The details of a workflow transition.

interface CreateWorkflowTransitionDetails {
    description?: string;
    from?: string[];
    name: string;
    properties?: {};
    rules?: Version2.Version2Models.CreateWorkflowTransitionRulesDetails;
    screen?: Version2.Version2Models.CreateWorkflowTransitionScreenDetails;
    to: string;
    type: string;
}

Properties

description?: string

The description of the transition. The maximum length is 1000 characters.

from?: string[]

The statuses the transition can start from.

name: string

The name of the transition. The maximum length is 60 characters.

properties?: {}

The properties of the transition.

Type declaration

    to: string

    The status the transition goes to.

    type: string

    The type of the transition.