Module Values.DashProgramInformationSource

Details about the content that you want MediaPackage to pass through in the manifest to the playback device.

Sourcetype nonrec t = {
  1. title : DashProgramInformationTitleString.t option;
    (*

    The title for the manifest.

    *)
  2. source : DashProgramInformationSourceString.t option;
    (*

    Information about the content provider.

    *)
  3. copyright : DashProgramInformationCopyrightString.t option;
    (*

    A copyright statement about the content.

    *)
  4. languageCode : DashProgramInformationLanguageCodeString.t option;
    (*

    The language code for this manifest.

    *)
  5. moreInformationUrl : DashProgramInformationMoreInformationUrlString.t option;
    (*

    An absolute URL that contains more information about this content.

    *)
}
Sourceval make : ?title:??? -> ?source:??? -> ?copyright:??? -> ?languageCode:??? -> ?moreInformationUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DashProgramInformationTitleString.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