Best

@Serializable
data class Best(val totalPoints: Int, val division: Int, val tier: Int, val points: Int, val repeats: Int)

Information about the season's best standing.

Parameters

totalPoints

the total number of points

division

the index of the reached division

tier

the index of the reached tier

points

the number of pips towards the next tier

repeats

the number of times the account maxed out the repeat division

Constructors

Link copied to clipboard
constructor(totalPoints: Int, division: Int, tier: Int, points: Int, repeats: Int)

Properties

Link copied to clipboard

This field holds the index of the reached division.

Link copied to clipboard
val points: Int

This field holds the number of pips towards the next tier.

Link copied to clipboard

This field holds the number of times the account maxed out the repeat division.

Link copied to clipboard
val tier: Int

This field holds the index of the reached tier.

Link copied to clipboard
@SerialName(value = "total_points")
val totalPoints: Int

This field holds the total number of points.