Current

@Serializable
data class Current(val totalPoints: Int, val division: Int, val tier: Int, val points: Int, val repeats: Int, val rating: Int? = null, val decay: Int? = null)

Information about the current 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

rating

the rating level

decay

the decay value

Constructors

Link copied to clipboard
constructor(totalPoints: Int, division: Int, tier: Int, points: Int, repeats: Int, rating: Int? = null, decay: Int? = null)

Properties

Link copied to clipboard
val decay: Int? = null

This field holds the decay value.

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
val rating: Int? = null

This field holds the rating level.

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.