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

UtteranceData

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

Provides information about a single utterance that was made to your bot.

interface UtteranceData {
count?: number | null;
distinctUsers?: number | null;
firstUtteredDate?: Date | number | null;
lastUtteredDate?: Date | number | null;
utteranceString?: string | null;
}

§Properties

§
count?: number | null
[src]

The number of times that the utterance was processed.

§
distinctUsers?: number | null
[src]

The total number of individuals that used the utterance.

§
firstUtteredDate?: Date | number | null
[src]

The date that the utterance was first recorded.

§
lastUtteredDate?: Date | number | null
[src]

The date that the utterance was last recorded.

§
utteranceString?: string | null
[src]

The text that was entered by the user or the text representation of an audio clip.