Module Values.UpdateNetworkSettingsRequestSource

Updates network-level settings for a Wickr network. You can modify settings such as client metrics, data retention, and other network-wide options.

Sourcetype nonrec t = {
  1. networkId : NetworkId.t;
    (*

    The ID of the Wickr network whose settings will be updated.

    *)
  2. settings : NetworkSettings.t;
    (*

    A map of setting names to their new values. Each setting should be provided with its appropriate type (boolean, string, number, etc.).

    *)
}
Sourceval context_ : string
Sourceval make : networkId:NetworkId.t -> settings:NetworkSettings.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NetworkId.t | `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Enum of string ]) list ]) 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