Skip to content

Commit

Permalink
feat(specs): update estimate response type [skip-bc] (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4101

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Christopher Hawke <[email protected]>
  • Loading branch information
algolia-bot and cdhawke committed Nov 14, 2024
1 parent 6fa9c7b commit 21c5186
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ package algoliasearch.abtesting
* @param durationDays
* Estimated number of days needed to reach the sample sizes required for detecting the configured effect. This value
* is based on historical traffic.
* @param controlSampleSize
* Number of tracked searches needed to be able to detect the configured effect for the control variant.
* @param experimentSampleSize
* Number of tracked searches needed to be able to detect the configured effect for the experiment variant.
* @param sampleSizes
* Sample size estimates for each variant. The first element is the control variant. Each element is the estimated
* number of searches required to achieve the desired statistical significance.
*/
case class EstimateABTestResponse(
durationDays: Option[Long] = scala.None,
controlSampleSize: Option[Long] = scala.None,
experimentSampleSize: Option[Long] = scala.None
sampleSizes: Option[Seq[Long]] = scala.None
)

0 comments on commit 21c5186

Please sign in to comment.