Skip to content

Commit 21c5186

Browse files
algolia-botcdhawke
andcommitted
feat(specs): update estimate response type [skip-bc] (generated)
algolia/api-clients-automation#4101 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Christopher Hawke <[email protected]>
1 parent 6fa9c7b commit 21c5186

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/main/scala/algoliasearch/abtesting/EstimateABTestResponse.scala

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ package algoliasearch.abtesting
2929
* @param durationDays
3030
* Estimated number of days needed to reach the sample sizes required for detecting the configured effect. This value
3131
* is based on historical traffic.
32-
* @param controlSampleSize
33-
* Number of tracked searches needed to be able to detect the configured effect for the control variant.
34-
* @param experimentSampleSize
35-
* Number of tracked searches needed to be able to detect the configured effect for the experiment variant.
32+
* @param sampleSizes
33+
* Sample size estimates for each variant. The first element is the control variant. Each element is the estimated
34+
* number of searches required to achieve the desired statistical significance.
3635
*/
3736
case class EstimateABTestResponse(
3837
durationDays: Option[Long] = scala.None,
39-
controlSampleSize: Option[Long] = scala.None,
40-
experimentSampleSize: Option[Long] = scala.None
38+
sampleSizes: Option[Seq[Long]] = scala.None
4139
)

0 commit comments

Comments
 (0)