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

    Interface ConsumedRestService

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

    interface ConsumedRestService {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "Rest$ConsumedRestService";
        $UnitID?: string;
        authenticationScheme: null | AuthenticationScheme;
        baseUrl: ValueTemplate;
        baseUrlParameter: null | RestParameter;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        openApiFile: null | OpenApiFile;
        operations: RestOperation[];
        addRestOperation(): Promise<RestOperation>;
        getRestOperation(name: string): undefined | RestOperation;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Rest$ConsumedRestService"

    The type of the element.

    $UnitID?: string
    authenticationScheme: null | AuthenticationScheme
    baseUrl: ValueTemplate
    baseUrlParameter: null | RestParameter
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    openApiFile: null | OpenApiFile
    operations: RestOperation[]

    Methods