@mendix/extensions-api - v0.2.4
    Preparing search index...

    Interface SequenceFlow

    interface SequenceFlow {
        $creationOptions?: SequenceFlowSchemaInitOptions;
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "Microflows$SequenceFlow";
        caseValues: CaseValue[];
        destination: string;
        destinationConnectionIndex: number;
        isErrorHandler: boolean;
        line: Line;
        origin: string;
        originConnectionIndex: number;
        addEnumerationCase(): Promise<EnumerationCase>;
        addInheritanceCase(): Promise<InheritanceCase>;
        addNoCase(): Promise<NoCase>;
        delete(): void;
        getContainer(): MicroflowBase;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Microflows$SequenceFlow"

    The type of the element.

    caseValues: CaseValue[]
    destination: string
    destinationConnectionIndex: number
    isErrorHandler: boolean
    line: Line
    origin: string
    originConnectionIndex: number

    Methods