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

DTMFSpecification

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

Specifies the DTMF input specifications.

interface DTMFSpecification {
deletionCharacter: string;
endCharacter: string;
endTimeoutMs: number;
maxLength: number;
}

§Properties

§
deletionCharacter: string
[src]

The DTMF character that clears the accumulated DTMF digits and immediately ends the input.

§
endCharacter: string
[src]

The DTMF character that immediately ends input. If the user does not press this character, the input ends after the end timeout.

§
endTimeoutMs: number
[src]

How long the bot should wait after the last DTMF character input before assuming that the input has concluded.

§
maxLength: number
[src]

The maximum number of DTMF digits allowed in an utterance.