Package-level declarations

Types

Link copied to clipboard
@Serializable
data class WvwMatch(val id: String, val startTime: String, val endTime: String, val scores: WvwMatchWorldCount, val worlds: WvwMatchWorldCount, val allWorlds: WvwMatchAllWorlds, val deaths: WvwMatchWorldCount, val kills: WvwMatchWorldCount, val victoryPoints: WvwMatchWorldCount, val maps: List<WvwMatchMap>, val skirmishes: List<WvwMatchSkirmish>)

Data model for wvw match object

Link copied to clipboard
@Serializable
data class WvwMatchAllWorlds(val red: List<Int>, val blue: List<Int>, val green: List<Int>)

Data model for wvw match all worlds property

Link copied to clipboard
@Serializable
data class WvwMatchMap(val id: Int, val type: String, val scores: WvwMatchWorldCount? = null, val kills: WvwMatchWorldCount? = null, val deaths: WvwMatchWorldCount? = null, val objectives: List<WvwMatchMapObjective> = listOf(), val bonuses: List<WvwMatchMapBonus> = listOf())

Data model for wvw match map property

Link copied to clipboard
@Serializable
data class WvwMatchMapBonus(val type: String, val owner: String)

Data model for wvw match map bonus property

Link copied to clipboard
@Serializable
data class WvwMatchMapObjective(val id: String, val owner: String, val type: String, val lastFlipped: String, val claimedBy: String? = null, val claimedAt: String? = null, val pointsTick: Int, val pointsCapture: Int, val guildUpgrades: List<Int> = listOf(), val yaksDelivered: Int? = null)

Data model for wvw match map objective property

Link copied to clipboard
@Serializable
data class WvwMatchSkirmish(val id: Int, val scores: WvwMatchWorldCount, val mapScores: List<WvwMatchSkirmishScore>)

Data model for wvw match skirmish property

Link copied to clipboard
@Serializable
data class WvwMatchSkirmishScore(val type: String, val scores: WvwMatchWorldCount)

Data model for wvw match skirmish score property

Link copied to clipboard
@Serializable
data class WvwMatchWorldCount(val red: Int, val blue: Int, val green: Int)

Data model for wvw match world points count