Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDialogflowCxV3ToolFunctionTool

import type { GoogleCloudDialogflowCxV3ToolFunctionTool } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

A Function tool describes the functions to be invoked on the client side.

interface GoogleCloudDialogflowCxV3ToolFunctionTool {
inputSchema?: {
[key: string]: any;
}
;
outputSchema?: {
[key: string]: any;
}
;
}

§Properties

§
inputSchema?: {
[key: string]: any;
}
[src]

Optional. The JSON schema is encapsulated in a google.protobuf.Struct to describe the input of the function. This input is a JSON object that contains the function's parameters as properties of the object.

§
outputSchema?: {
[key: string]: any;
}
[src]

Optional. The JSON schema is encapsulated in a google.protobuf.Struct to describe the output of the function. This output is a JSON object that contains the function's parameters as properties of the object.