Module Values.AudioAndDTMFInputSpecificationSource

Specifies the audio and DTMF input specification.

Sourcetype nonrec t = {
  1. startTimeoutMs : TimeInMilliSeconds.t;
    (*

    Time for which a bot waits before assuming that the customer isn't going to speak or press a key. This timeout is shared between Audio and DTMF inputs.

    *)
  2. audioSpecification : AudioSpecification.t option;
    (*

    Specifies the settings on audio input.

    *)
  3. dtmfSpecification : DTMFSpecification.t option;
    (*

    Specifies the settings on DTMF input.

    *)
}
Sourceval context_ : string
Sourceval make : ?audioSpecification:??? -> ?dtmfSpecification:??? -> startTimeoutMs:TimeInMilliSeconds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TimeInMilliSeconds.t | `Structure of (string * [> `Integer of TimeInMilliSeconds.t | `String of DTMFCharacter.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t