BotDtmfSpecificationArgs

data class BotDtmfSpecificationArgs(val deletionCharacter: Output<String>, val endCharacter: Output<String>, val endTimeoutMs: Output<Int>, val maxLength: Output<Int>) : ConvertibleToJava<BotDtmfSpecificationArgs>

Specifies the settings on DTMF input.

Constructors

Link copied to clipboard
constructor(deletionCharacter: Output<String>, endCharacter: Output<String>, endTimeoutMs: Output<Int>, maxLength: Output<Int>)

Properties

Link copied to clipboard

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

Link copied to clipboard
val endCharacter: Output<String>

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

Link copied to clipboard
val endTimeoutMs: Output<Int>

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

Link copied to clipboard
val maxLength: Output<Int>

The maximum number of DTMF digits allowed in an utterance.

Functions

Link copied to clipboard
open override fun toJava(): BotDtmfSpecificationArgs