Module Values.HarvestedManifestsSource

A collection of harvested manifests of different types.

Sourcetype nonrec t = {
  1. hlsManifests : HarvestedHlsManifestsList.t option;
    (*

    A list of harvested HLS manifests.

    *)
  2. dashManifests : HarvestedDashManifestsList.t option;
    (*

    A list of harvested DASH manifests.

    *)
  3. lowLatencyHlsManifests : HarvestedLowLatencyHlsManifestsList.t option;
    (*

    A list of harvested Low-Latency HLS manifests.

    *)
}
Sourceval make : ?hlsManifests:??? -> ?dashManifests:??? -> ?lowLatencyHlsManifests:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ResourceName.t ]) 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