Module Values.CaptionSelectorSource

Caption Selector

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

    When specified this field indicates the three letter language code of the caption track to extract from the source.

    *)
  2. name : string;
    (*

    Name identifier for a caption selector. This name is used to associate this caption selector with one or more caption descriptions. Names must be unique within an event.

    *)
  3. selectorSettings : CaptionSelectorSettings.t option;
    (*

    Caption selector settings.

    *)
}
Sourceval context_ : string
Sourceval make : ?languageCode:??? -> ?selectorSettings:??? -> name:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Structure of (string * [> `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Double of float ]) list ]) list ]) 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