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

Content

import type { Content } from "https://aws-api.deno.dev/v0.4/services/alexaforbusiness.ts?docs=full";

The content definition. This can contain only one text, SSML, or audio list object.

interface Content {
AudioList?: Audio[] | null;
SsmlList?: Ssml[] | null;
TextList?: Text[] | null;
}

§Properties

§
AudioList?: Audio[] | null
[src]

The list of audio messages.

§
SsmlList?: Ssml[] | null
[src]

The list of SSML messages.

§
TextList?: Text[] | null
[src]

The list of text messages.