Module Values.UtteranceInputSpecificationSource

Contains information about input of an utterance.

Sourcetype nonrec t = {
  1. textInput : TestSetUtteranceText.t option;
    (*

    A text input transcription of the utterance. It is only applicable for test-sets containing text data.

    *)
  2. audioInput : UtteranceAudioInputSpecification.t option;
    (*

    Contains information about the audio input for an utterance.

    *)
}
Sourceval make : ?textInput:??? -> ?audioInput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TestSetUtteranceText.t | `Structure of (string * [> `String of AudioFileS3Location.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