SeasonStats

@Serializable
data class SeasonStats(val id: String, val wins: Int, val losses: Int, val rating: Int)

Information about a team's PvP season.

Parameters

id

the season's ID

wins

the amount of wins

losses

the amount of losses

rating

the team's rating

Constructors

Link copied to clipboard
constructor(id: String, wins: Int, losses: Int, rating: Int)

Properties

Link copied to clipboard
val id: String

This field holds the season's ID.

Link copied to clipboard
val losses: Int

This field holds the amount of losses.

Link copied to clipboard
val rating: Int

This field holds the team's rating.

Link copied to clipboard
val wins: Int

This field holds the amount of wins.