cohort.CohortDescription.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of evaluation-proxy-core Show documentation
Show all versions of evaluation-proxy-core Show documentation
Core package for Amplitude's evaluation proxy.
package com.amplitude.cohort
import kotlinx.serialization.Serializable
const val USER_GROUP_TYPE = "User"
@Serializable
data class CohortDescription(
val id: String,
val lastComputed: Long,
val size: Int,
val groupType: String = USER_GROUP_TYPE
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy