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

commonMain.ro.dragossusi.sevens.payload.game.SimplePlayerResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package ro.dragossusi.sevens.payload.game

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
class SimplePlayerResponse constructor(
    @SerialName("id")
    val id: Long,
    @SerialName("name")
    val name: String,
    @SerialName("image")
    val image: String?,
    @SerialName("card_count")
    val cardCount: Int,
    @SerialName("won_cards")
    val wonCards: Int?,
    @SerialName("won_points")
    val wonPoints: Int?
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy