games.august.counter.service.api.model.CounterSnapshot.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
package games.august.counter.service.api.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
internal data class CounterSnapshot(
@SerialName("timestamp")
val timestamp: String,
@SerialName("time_resolution_seconds")
val timeResolutionSeconds: Int,
@SerialName("count")
val total: BigNumber,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy