Module Values.HlsCaptionLanguageMappingSource

Caption Language Mapping

Sourcetype nonrec t = {
  1. captionChannel : int option;
    (*

    Caption channel.

    *)
  2. customLanguageCode : string option;
    (*

    Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php

    *)
  3. languageCode : LanguageCode.t option;
    (*

    Specify the language, using an ISO 639-2 three-letter code in all capital letters. You can find a list of codes at: https://www.loc.gov/standards/iso639-2/php/code_list.php

    *)
  4. languageDescription : string option;
    (*

    Caption language description.

    *)
}
Sourceval make : ?captionChannel:??? -> ?customLanguageCode:??? -> ?languageCode:??? -> ?languageDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string ]) 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