Module Values.DifferentialPrivacyTemplateParametersOutputSource

The epsilon and noise parameter values that were used for the differential privacy template.

Sourcetype nonrec t = {
  1. epsilon : Epsilon.t option;
    (*

    The epsilon value that you specified.

    *)
  2. usersNoisePerQuery : UsersNoisePerQuery.t option;
    (*

    Noise added per query is measured in terms of the number of users whose contributions you want to obscure. This value governs the rate at which the privacy budget is depleted.

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