File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
client/src/commonMain/kotlin/com/algolia/client/model/abtesting Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff 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
1617public 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)
You can’t perform that action at this time.
0 commit comments