
commonMain.EvaluationDistribution.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 EvaluationDistribution(
// The key of the variant to deliver if this range matches.
val variant: String,
// The distribution range [start, end), where the max value is 42949672.
// E.g. [0, 42949673] = [0%, 100%]
val range: List
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy