interface ModuleSettings {
    $Component: "mendix.ModuleSettingsApi";
    $CreationOptions?: unknown;
    $ID: string;
    $Type: "Projects$ModuleSettings";
    basedOnVersion: string;
    exportLevel: ModuleExportLevel;
    extensionName: string;
    jarDependencies: JarDependency[];
    protectedModuleType: ProtectedModuleType;
    solutionIdentifier: string;
    version: string;
    addJarDependency(): Promise<JarDependency>;
}

Hierarchy (view full)

Properties

$Component
$CreationOptions?: unknown

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

basedOnVersion: string
exportLevel: ModuleExportLevel
extensionName: string
jarDependencies: JarDependency[]
protectedModuleType: ProtectedModuleType
solutionIdentifier: string
version: string

Methods