
games.august.counter.service.api.model.UpdateCounterRequest.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 UpdateCounterRequest(
@SerialName("id")
val id: String,
@SerialName("tag")
val tag: String,
@SerialName("timestamp")
val timestamp: String,
@SerialName("added_count")
val addedCount: BigNumber,
@SerialName("removed_count")
val removedCount: BigNumber,
@SerialName("idempotency_key")
val idempotencyKey: String,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy