Level

@Serializable
data class Level(val minRank: Int, val maxRank: Int, val points: Int)

Information about a PvP rank's level.

Parameters

minRank

the minimum PvP level required for the level

maxRank

the maximum PvP level for the level

points

the amount of PvP experience needed to go from the given minimum rank to maximum rank

Constructors

Link copied to clipboard
constructor(minRank: Int, maxRank: Int, points: Int)

Properties

Link copied to clipboard
@SerialName(value = "max_rank")
val maxRank: Int

This field holds the maximum PvP level for the level.

Link copied to clipboard
@SerialName(value = "min_rank")
val minRank: Int

This field holds the minimum PvP level required for the level.

Link copied to clipboard
val points: Int

This field holds the amount of PvP experience needed to go from the given minimum rank to maximum rank.