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

    Interface MicroflowCreationOptions

    interface MicroflowCreationOptions {
        flows?: {
            caseValue?: { enumerationCase?: string; inheritanceCase?: string };
            destinationConnectionIndex?: number;
            destinationId?: string;
            originConnectionIndex?: number;
            originId?: string;
        }[];
        name: string;
        objects?: MicroflowObject[];
        returnType?: {
            entity?: string;
            enumeration?: string;
            type: | "Binary"
            | "Boolean"
            | "DateTime"
            | "Decimal"
            | "Enumeration"
            | "String"
            | "Integer"
            | "Float"
            | "Object"
            | "Void"
            | "List";
        };
        returnVariableName?: string;
    }
    Index

    Properties

    flows?: {
        caseValue?: { enumerationCase?: string; inheritanceCase?: string };
        destinationConnectionIndex?: number;
        destinationId?: string;
        originConnectionIndex?: number;
        originId?: string;
    }[]
    name: string
    objects?: MicroflowObject[]
    returnType?: {
        entity?: string;
        enumeration?: string;
        type:
            | "Binary"
            | "Boolean"
            | "DateTime"
            | "Decimal"
            | "Enumeration"
            | "String"
            | "Integer"
            | "Float"
            | "Object"
            | "Void"
            | "List";
    }
    returnVariableName?: string