GW2v2WvwMatchStats

@Serializable
data class GW2v2WvwMatchStats(val id: String, val deaths: Map<String, Int>, val kills: Map<String, Int>, val maps: List<GW2v2WvwMatchStats.GameMap>)

Information about a WvW match stats.

Parameters

id

the match's ID

deaths

the deaths by team color

kills

the deaths by team color

maps

the stats by map

Constructors

Link copied to clipboard
constructor(id: String, deaths: Map<String, Int>, kills: Map<String, Int>, maps: List<GW2v2WvwMatchStats.GameMap>)

Types

Link copied to clipboard
@Serializable
data class GameMap(val id: Int, val type: String, val deaths: Map<String, Int>, val kills: Map<String, Int>)

Map-specific information about scores.

Properties

Link copied to clipboard

This field holds the deaths by team color.

Link copied to clipboard
val id: String

This field holds the match's ID.

Link copied to clipboard

This field holds the deaths by team color.

Link copied to clipboard

This field holds the stats by map.