All Downloads are FREE. Search and download functionalities are using the official Maven repository.

games.august.counter.service.api.model.CounterAggregate.kt Maven / Gradle / Ivy

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