Module Values.RouterInputThumbnailDetailsSource

The details of a thumbnail associated with a router input, including the thumbnail messages, the thumbnail image, the timecode, and the timestamp.

Sourcetype nonrec t = {
  1. thumbnailMessages : RouterInputMessages.t option;
    (*

    The messages associated with the router input thumbnail.

    *)
  2. thumbnail : Blob.t option;
    (*

    The thumbnail image, encoded as a Base64-encoded binary data object.

    *)
  3. timecode : String_.t option;
    (*

    The timecode associated with the thumbnail.

    *)
  4. timestamp : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp associated with the thumbnail.

    *)
}
Sourceval make : ?thumbnailMessages:??? -> ?thumbnail:??? -> ?timecode:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.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