Package-level declarations

Types

Link copied to clipboard
@Serializable
data class Highscores(    val world: String?,     val category: HighscoresCategory,     val vocation: HighscoresProfession,     val worldTypes: Set<PvpType>,     val battlEyeType: HighscoresBattlEyeType,     val lastUpdated: Instant,     val currentPage: Int,     val totalPages: Int,     val resultsCount: Int,     val entries: List<HighscoresEntry>) : PaginatedWithUrl<HighscoresEntry>

The Tibia highscores, containing the highest levels of a given category.

Link copied to clipboard
@Serializable
data class HighscoresEntry(    val rank: Int,     val name: String,     val level: Int,     val world: String,     val vocation: Vocation,     val value: Long,     val additionalValue: String?) : BaseCharacter, CharacterLevel

An entry in the Highscores.