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

GoogleCloudDialogflowV2IntentMessageSimpleResponse

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

The simple response message containing speech or text.

interface GoogleCloudDialogflowV2IntentMessageSimpleResponse {
displayText?: string;
ssml?: string;
textToSpeech?: string;
}

§Properties

§
displayText?: string
[src]

Optional. The text to display.

§
ssml?: string
[src]

One of text_to_speech or ssml must be provided. Structured spoken response to the user in the SSML format. Mutually exclusive with text_to_speech.

§
textToSpeech?: string
[src]

One of text_to_speech or ssml must be provided. The plain text of the speech output. Mutually exclusive with ssml.