Current

@Serializable
data class Current(val totalPoints: Long, val division: Long, val tier: Long, val points: Long, val repeats: Long, val rating: Long? = null, val decay: Long? = 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: Long, division: Long, tier: Long, points: Long, repeats: Long, rating: Long? = null, decay: Long? = null)

Properties

Link copied to clipboard
val decay: Long?

This field holds the decay value.

Link copied to clipboard

This field holds the index of the reached division.

Link copied to clipboard

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

Link copied to clipboard
val rating: Long?

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: Long

This field holds the index of the reached tier.

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

This field holds the total number of points.