
commonMain.EvaluationAllocation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evaluation-core-jvm Show documentation
Show all versions of evaluation-core-jvm Show documentation
Core kotlin multiplatform package for Amplitude Experiment's evaluation.
package com.amplitude.experiment.evaluation
import kotlinx.serialization.Serializable
@Serializable
data class EvaluationAllocation(
// The distribution range [0, max). That is the possibles values are [0, max-1].
// E.g. with max 100, [0, 49] is 50% allocation
val range: List,
// The distribution of variants if allocated.
val distributions: List
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy