Module Values.ShredderSettingsSource

Configuration for the message shredder feature, which securely deletes messages and files from devices to prevent data recovery.

Sourcetype nonrec t = {
  1. canProcessManually : Boolean.t option;
    (*

    Specifies whether users can manually trigger the shredder to delete content.

    *)
  2. intensity : Integer.t option;
    (*

    Prevents Wickr data from being recovered by overwriting deleted Wickr data. Valid Values: Must be one of [0, 20, 60, 100]

    *)
}
Sourceval make : ?canProcessManually:??? -> ?intensity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.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