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

GoogleCloudDialogflowCxV3ToolUse

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

Stores metadata of the invocation of an action supported by a tool.

interface GoogleCloudDialogflowCxV3ToolUse {
action?: string;
readonly displayName?: string;
inputActionParameters?: {
[key: string]: any;
}
;
outputActionParameters?: {
[key: string]: any;
}
;
tool?: string;
}

§Properties

§
action?: string
[src]

Optional. Name of the action to be called during the tool use.

§
readonly displayName?: string
[src]

Output only. The display name of the tool.

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

Optional. A list of input parameters for the action.

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

Optional. A list of output parameters generated by the action.

§
tool?: string
[src]

Required. The tool that should be used. Format: projects//locations//agents//tools/.