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

GoogleCloudDialogflowCxV3WebhookRequestIntentInfo

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

Represents intent information communicated to the webhook.

interface GoogleCloudDialogflowCxV3WebhookRequestIntentInfo {
confidence?: number;
displayName?: string;
lastMatchedIntent?: string;
}

§Properties

§
confidence?: number
[src]

The confidence of the matched intent. Values range from 0.0 (completely uncertain) to 1.0 (completely certain).

§
displayName?: string
[src]

Always present. The display name of the last matched intent.

§
lastMatchedIntent?: string
[src]

Always present. The unique identifier of the last matched intent. Format: projects//locations//agents//intents/.

§

Parameters identified as a result of intent matching. This is a map of the name of the identified parameter to the value of the parameter identified from the user's utterance. All parameters defined in the matched intent that are identified will be surfaced here.