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

de.kevcodez.pubg.model.match.Roster.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package de.kevcodez.pubg.model.match

import de.kevcodez.pubg.model.Relationships

class Roster : MatchObject() {

    lateinit var id: String
    lateinit var relationships: Relationships
    lateinit var attributes: RosterAttributes

}

data class RosterAttributes(
    val stats: RosterStats,
    val shardId: String,
    val won: Boolean
)

data class RosterStats(
    val rank: Int,
    val teamId: Int
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy