games.august.counter.service.api.model.CounterAggregate.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of counter-client Show documentation
Show all versions of counter-client Show documentation
A Kotlin library for integrating with the August Games Counter service
The newest version!
package games.august.counter.service.api.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
internal data class CounterAggregate(
@SerialName("tag")
val tag: String,
@SerialName("span")
val span: TimeSpan,
@SerialName("total")
val total: BigNumber,
@SerialName("added")
val added: BigNumber,
@SerialName("removed")
val removed: BigNumber,
@SerialName("snapshots")
val snapshots: List? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy