Documentation
    Preparing search index...

    Interface RemoteMethodDefinition

    Definition of a remote method exposed or called by the skill.

    interface RemoteMethodDefinition {
        description?: string;
        httpMethod?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
        name: string;
        parameters?: Record<
            string,
            {
                description?: string;
                required: boolean;
                type: "string"
                | "number"
                | "boolean"
                | "object"
                | "array";
            },
        >;
        remoteName: string;
    }
    Index

    Properties

    description?: string
    httpMethod?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH"
    name: string
    parameters?: Record<
        string,
        {
            description?: string;
            required: boolean;
            type: "string"
            | "number"
            | "boolean"
            | "object"
            | "array";
        },
    >
    remoteName: string