Module Values.LanguageCodeItemSource

Provides information on the speech contained in a discreet utterance when multi-language identification is enabled in your request. This utterance represents a block of speech consisting of one language, preceded or followed by a block of speech in a different language.

Sourcetype nonrec t = {
  1. languageCode : LanguageCode.t option;
    (*

    Provides the language code for each language identified in your media.

    *)
  2. durationInSeconds : DurationInSeconds.t option;
    (*

    Provides the total time, in seconds, each identified language is spoken in your media.

    *)
}
Sourceval make : ?languageCode:??? -> ?durationInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of DurationInSeconds.t ]) 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