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

    Interface CreateWorkflowTransitionDetails

    The details of a workflow transition.

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

    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.

    to: string

    The status the transition goes to.

    type: string

    The type of the transition.