GoogleCloudDialogflowCxV3Match
import type { GoogleCloudDialogflowCxV3Match } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";interface GoogleCloudDialogflowCxV3Match {
confidence?: number;
event?: string;
intent?: GoogleCloudDialogflowCxV3Intent;
matchType?:
| "MATCH_TYPE_UNSPECIFIED"
| "INTENT"
| "DIRECT_INTENT"
| "PARAMETER_FILLING"
| "NO_MATCH"
| "NO_INPUT"
| "EVENT"
| "KNOWLEDGE_CONNECTOR"
| "PLAYBOOK";
parameters?: {};
[key: string]: any;
resolvedInput?: string;
}