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

    Interface ConnectorType

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

    interface ConnectorType {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "ConnectorKit$ConnectorType";
        $UnitID?: string;
        connectorActions: ConnectorAction[];
        connectorName: string;
        connectorProperties: ConnectorProperty[];
        description: string;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        icon: string;
        iconDark: string;
        name: string;
        version: string;
        addConnectorAction(): Promise<ConnectorAction>;
        addConnectorProperty(): Promise<ConnectorProperty>;
        getConnectorAction(name: string): undefined | ConnectorAction;
        getConnectorProperty(name: string): undefined | ConnectorProperty;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "ConnectorKit$ConnectorType"

    The type of the element.

    $UnitID?: string
    connectorActions: ConnectorAction[]
    connectorName: string
    connectorProperties: ConnectorProperty[]
    description: string
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    icon: string
    iconDark: string
    name: string
    version: string

    Methods