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

GoogleCloudDialogflowV2ArticleAnswer

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

Represents article answer.

interface GoogleCloudDialogflowV2ArticleAnswer {
answerRecord?: string;
confidence?: number;
metadata?: {
[key: string]: string;
}
;
snippets?: string[];
title?: string;
uri?: string;
}

§Properties

§
answerRecord?: string
[src]

The name of answer record, in the format of "projects//locations//answerRecords/"

§
confidence?: number
[src]

Article match confidence. The system's confidence score that this article is a good match for this conversation, as a value from 0.0 (completely uncertain) to 1.0 (completely certain).

§
metadata?: {
[key: string]: string;
}
[src]

A map that contains metadata about the answer and the document from which it originates.

§
snippets?: string[]
[src]

Article snippets.

§
title?: string
[src]

The article title.

§
uri?: string
[src]

The article URI.