Module Values.CaptionLanguageMappingSource

Maps a caption channel to an ISO 693-2 language code (http://www.loc.gov/standards/iso639-2), with an optional description.

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

    The closed caption channel being described by this CaptionLanguageMapping. Each channel mapping must have a unique channel number (maximum of 4)

    *)
  2. languageCode : string;
    (*

    Three character ISO 639-2 language code (see http://www.loc.gov/standards/iso639-2)

    *)
  3. languageDescription : string;
    (*

    Textual description of language

    *)
}
Sourceval context_ : string
Sourceval make : captionChannel:int -> languageCode:string -> languageDescription:string -> unit -> t
Sourceval to_value : t -> [> `Structure 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