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

    Interface ServiceInfo

    An element is part of a Mendix model and all elements together form the logic of the model. Elements may contain other elements. An element always has a container element, which is its parent. The root of an element tree is always a unit.

    interface ServiceInfo {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "WebServices$ServiceInfo";
        $UnitID?: string;
        documentation: string;
        location: string;
        locationConstant: null | string;
        name: string;
        operations: OperationInfo[];
        portName: string;
        soapVersion: SoapVersion;
        usingAddressing: boolean;
        addOperationInfo(): Promise<OperationInfo>;
        delete(): void;
        getContainer(): WsdlDescription;
        getOperationInfo(name: string): undefined | OperationInfo;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "WebServices$ServiceInfo"

    The type of the element.

    $UnitID?: string
    documentation: string
    location: string
    locationConstant: null | string
    name: string
    operations: OperationInfo[]
    portName: string
    soapVersion: SoapVersion
    usingAddressing: boolean

    Methods

    • Returns void