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

    Interface Transition

    Details of a workflow transition.

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

    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.

    screen?: ScreenID
    to: string

    The status the transition goes to.

    type: string

    The type of the transition.