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

GoogleCloudDialogflowV2beta1AnnotatedMessagePart

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

Represents a part of a message possibly annotated with an entity. The part can be an entity or purely a part of the message between two entities or message start/end.

interface GoogleCloudDialogflowV2beta1AnnotatedMessagePart {
entityType?: string;
formattedValue?: any;
text?: string;
}

§Properties

§
entityType?: string
[src]

Optional. The Dialogflow system entity type of this message part. If this is empty, Dialogflow could not annotate the phrase part with a system entity.

§
formattedValue?: any
[src]

Optional. The Dialogflow system entity formatted value of this message part. For example for a system entity of type @sys.unit-currency, this may contain: { "amount": 5, "currency": "USD" }

§
text?: string
[src]

Required. A part of a message possibly annotated with an entity.