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

    Interface JavaScriptActionParameterCreationOptions

    interface JavaScriptActionParameterCreationOptions {
        category?: string;
        description?: string;
        isRequired?: boolean;
        name: string;
        type: {
            entity?: string;
            enumeration?: string;
            type:
                | "Boolean"
                | "Decimal"
                | "Enumeration"
                | "String"
                | "Object"
                | "Microflow"
                | "Nanoflow"
                | "Entity"
                | "Date and time"
                | "Integer/Long"
                | "List";
            typeParameter?: string;
        };
    }
    Index

    Properties

    category?: string
    description?: string
    isRequired?: boolean
    name: string
    type: {
        entity?: string;
        enumeration?: string;
        type:
            | "Boolean"
            | "Decimal"
            | "Enumeration"
            | "String"
            | "Object"
            | "Microflow"
            | "Nanoflow"
            | "Entity"
            | "Date and time"
            | "Integer/Long"
            | "List";
        typeParameter?: string;
    }