Values.DTMFSpecificationSourceSpecifies the DTMF input specifications.
type nonrec t = {maxLength : MaxUtteranceDigits.t;The maximum number of DTMF digits allowed in an utterance.
*)endTimeoutMs : TimeInMilliSeconds.t;How long the bot should wait after the last DTMF character input before assuming that the input has concluded.
*)deletionCharacter : DTMFCharacter.t;The DTMF character that clears the accumulated DTMF digits and immediately ends the input.
*)endCharacter : DTMFCharacter.t;The DTMF character that immediately ends input. If the user does not press this character, the input ends after the end timeout.
*)}val make :
maxLength:MaxUtteranceDigits.t ->
endTimeoutMs:TimeInMilliSeconds.t ->
deletionCharacter:DTMFCharacter.t ->
endCharacter:DTMFCharacter.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of MaxUtteranceDigits.t | `String of DTMFCharacter.t ])
list ]