Module Values.ParticipantThumbnailConfigurationSource

An object representing a configuration of thumbnails for recorded video from an individual participant.

Sourcetype nonrec t = {
  1. targetIntervalSeconds : ThumbnailIntervalSeconds.t option;
    (*

    The targeted thumbnail-generation interval in seconds. This is configurable only if recordingMode is INTERVAL. Default: 60.

    *)
  2. storage : ThumbnailStorageTypeList.t option;
    (*

    Indicates the format in which thumbnails are recorded. SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.

    *)
  3. recordingMode : ThumbnailRecordingMode.t option;
    (*

    Thumbnail recording mode. Default: DISABLED.

    *)
}
Sourceval make : ?targetIntervalSeconds:??? -> ?storage:??? -> ?recordingMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of ThumbnailIntervalSeconds.t | `List of [> `Enum of string ] 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