GoogleCloudDialogflowV2ToolCall
import type { GoogleCloudDialogflowV2ToolCall } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";Represents a call of a specific tool's action with the specified inputs.
interface GoogleCloudDialogflowV2ToolCall {
action?: string;
answerRecord?: string;
readonly createTime?: Date;
inputParameters?: {};
[key: string]: any;
readonly state?: "STATE_UNSPECIFIED" | "TRIGGERED" | "NEEDS_CONFIRMATION";
tool?: string;
toolDisplayDetails?: string;
toolDisplayName?: string;
}