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

    Interface PublishedRestServiceOperation

    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 PublishedRestServiceOperation {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "Rest$PublishedRestServiceOperation";
        $UnitID?: string;
        commit: CommitEnum;
        deprecated: boolean;
        documentation: string;
        exportMapping: null | string;
        httpMethod: HttpMethod;
        importMapping: null | string;
        microflow: null | string;
        objectHandlingBackup: ObjectHandlingBackupEnum;
        parameters: RestOperationParameter[];
        path: string;
        summary: string;
        addRestOperationParameter(): Promise<RestOperationParameter>;
        delete(): void;
        getContainer(): PublishedRestServiceResource;
        getRestOperationParameter(name: string): undefined | RestOperationParameter;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Rest$PublishedRestServiceOperation"

    The type of the element.

    $UnitID?: string
    commit: CommitEnum
    deprecated: boolean
    documentation: string
    exportMapping: null | string
    httpMethod: HttpMethod
    importMapping: null | string
    microflow: null | string
    objectHandlingBackup: ObjectHandlingBackupEnum
    path: string
    summary: string

    Methods

    • Returns void