Skip to content

Commit

Permalink
Rename the new field to custom_maximum_frequency_per_user
Browse files Browse the repository at this point in the history
  • Loading branch information
iverson52000 committed Mar 4, 2024
1 parent 28b301d commit 0bd40d5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ message DeterministicDistribution {}

// Parameters used when applying the deterministic count methodology.
message DeterministicCount {
// Optimized maximum frequency per user value calculated by the
// DataProvider.
int32 dynamic_clipping_maximum_frequency_per_user = 1;
// Custom maximum frequency per user value calculated by the
// DataProvider. If this is specified, the maximum_frequency_per_user in
// measurement_spec will be ignored.
int32 custom_maximum_frequency_per_user = 1;
}

// Parameters used when applying the deterministic sum methodology.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ message MeasurementSpec {
// Differential privacy parameters.
DifferentialPrivacyParams privacy_params = 1;

// Maximum frequency per user that will be included in this measurement.
// Maximum frequency per user that would be included in this measurement.
//
// If the dynamic_clip_cap in the DeterministicCount methodology is
// specified, this field will be ignored and the value from that message
// will be used instead.
// If the custom_maximum_frequency_per_user in the DeterministicCount
// methodology is specified, this field will be ignored and the value from
// that message will be used instead.
int32 maximum_frequency_per_user = 2
[(google.api.field_behavior) = REQUIRED];
}
Expand Down

0 comments on commit 0bd40d5

Please sign in to comment.