Skip to content

Commit 4a0523c

Browse files
algolia-botcdhawke
andcommitted
feat(specs): abtesting winsorizedAmount (generated)
algolia/api-clients-automation#5053 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Christopher Hawke <69921547+cdhawke@users.noreply.github.com>
1 parent ebae89a commit 4a0523c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/scala/algoliasearch/abtesting/Currency.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ package algoliasearch.abtesting
3434
* Mean for this currency.
3535
* @param standardDeviation
3636
* Standard deviation for this currency.
37+
* @param winsorizedAmount
38+
* The amount of revenue for this currency that was removed after capping purchase amounts to the 95th percentile.
3739
*/
3840
case class Currency(
3941
currency: Option[String] = scala.None,
4042
revenue: Option[Double] = scala.None,
4143
mean: Option[Double] = scala.None,
42-
standardDeviation: Option[Double] = scala.None
44+
standardDeviation: Option[Double] = scala.None,
45+
winsorizedAmount: Option[Double] = scala.None
4346
)

0 commit comments

Comments
 (0)