Skip to content

Commit d20ba23

Browse files
algolia-botcdhawke
andcommitted
feat(specs): abtesting winsorizedAmount (generated)
algolia/api-clients-automation#5053 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Christopher Hawke <[email protected]>
1 parent a7f66be commit d20ba23

File tree

1 file changed

+4
-0
lines changed
  • client/src/commonMain/kotlin/com/algolia/client/model/abtesting

1 file changed

+4
-0
lines changed

client/src/commonMain/kotlin/com/algolia/client/model/abtesting/Currency.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import kotlinx.serialization.json.*
1111
* @param revenue Revenue for this currency.
1212
* @param mean Mean for this currency.
1313
* @param standardDeviation Standard deviation for this currency.
14+
* @param winsorizedAmount The amount of revenue for this currency that was removed after capping purchase amounts to the 95th percentile.
1415
*/
1516
@Serializable
1617
public data class Currency(
@@ -26,4 +27,7 @@ public data class Currency(
2627

2728
/** Standard deviation for this currency. */
2829
@SerialName(value = "standardDeviation") val standardDeviation: Double? = null,
30+
31+
/** The amount of revenue for this currency that was removed after capping purchase amounts to the 95th percentile. */
32+
@SerialName(value = "winsorizedAmount") val winsorizedAmount: Double? = null,
2933
)

0 commit comments

Comments
 (0)