Module Values.SourceDetailsSource

Container for details about different types of media sources (image, audio, or video).

Sourcetype nonrec t = {
  1. imageSourceDetails : ImageSourceDetails.t option;
    (*

    Details specific to image content within the source.

    *)
  2. audioSourceDetails : AudioSourceDetails.t option;
    (*

    Details specific to audio content within the source.

    *)
  3. videoSourceDetails : VideoSourceDetails.t option;
    (*

    Details specific to video content within the source.

    *)
}
Sourceval make : ?imageSourceDetails:??? -> ?audioSourceDetails:??? -> ?videoSourceDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of MediaId.t ]) 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