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

    Interface Connector

    A unit is a container of elements, it can not contain other units.

    interface Connector {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "ConnectorKit$Connector";
        $UnitID?: string;
        connector: null | string;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        propertyMapping: ConnectorPropertyMapping[];
        addConnectorPropertyMapping(): Promise<ConnectorPropertyMapping>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "ConnectorKit$Connector"

    The type of the element.

    $UnitID?: string
    connector: null | string
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    propertyMapping: ConnectorPropertyMapping[]

    Methods