GW2v2PvpStandings

@Serializable
data class GW2v2PvpStandings(val current: GW2v2PvpStandings.Current, val best: GW2v2PvpStandings.Best, val seasonId: String)

Information about an account's PvP standings.

Parameters

current

the season's current standing

best

the season's best standing

seasonId

the season's ID

Constructors

Link copied to clipboard
constructor(current: GW2v2PvpStandings.Current, best: GW2v2PvpStandings.Best, seasonId: String)

Types

Link copied to clipboard
@Serializable
data class Best(val totalPoints: Int, val division: Int, val tier: Int, val points: Int, val repeats: Int)

Information about the season's best standing.

Link copied to clipboard
@Serializable
data class Current(val totalPoints: Int, val division: Int, val tier: Int, val points: Int, val repeats: Int, val rating: Int? = null, val decay: Int? = null)

Information about the current standing.

Properties

Link copied to clipboard

This field holds the season's best standing.

Link copied to clipboard

This field holds the season's current standing.

Link copied to clipboard
@SerialName(value = "season_id")
val seasonId: String

This field holds the season's ID.