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

GoogleCloudDialogflowV2FaqAnswer

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

Represents answer from "frequently asked questions".

interface GoogleCloudDialogflowV2FaqAnswer {
answer?: string;
answerRecord?: string;
confidence?: number;
metadata?: {
[key: string]: string;
}
;
question?: string;
source?: string;
}

§Properties

§
answer?: string
[src]

The piece of text from the source knowledge base document.

§
answerRecord?: string
[src]

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

§
confidence?: number
[src]

The system's confidence score that this Knowledge answer is a good match for this conversational query, range 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.

§
question?: string
[src]

The corresponding FAQ question.

§
source?: string
[src]

Indicates which Knowledge Document this answer was extracted from. Format: projects//locations//agent/knowledgeBases//documents/.