Module Values.NetworkSettingsSource

Contains network-level configuration settings that apply to all users and security groups within a Wickr network.

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

    Allows Wickr clients to send anonymized performance and usage metrics to the Wickr backend server for service improvement and troubleshooting.

    *)
  2. readReceiptConfig : ReadReceiptConfig.t option;
    (*

    Configuration for read receipts at the network level, controlling the default behavior for whether senders can see when their messages have been read.

    *)
  3. dataRetention : Boolean.t option;
    (*

    Indicates whether the data retention feature is enabled for the network. When true, messages are captured by the data retention bot for compliance and archiving purposes.

    *)
  4. enableTrustedDataFormat : Boolean.t option;
    (*

    Configuration for OpenTDF integration at the network level, enforcing ABAC decision making when operating in TDF enabled rooms.

    *)
}
Sourceval make : ?enableClientMetrics:??? -> ?readReceiptConfig:??? -> ?dataRetention:??? -> ?enableTrustedDataFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `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