Division

@Serializable
data class Division(val name: String, val flags: List<String>, val largeIcon: String, val smallIcon: String, val pipIcon: String, val tiers: List<GW2v2PvpSeason.Division.Tier>)

Information about a division.

Parameters

name

the division's localized name

flags

the flags providing additional information about the division

largeIcon

the render service URL for the division's large icon

smallIcon

the render service URL for the division's small icon

pipIcon

the render service URL for the division's pip icon

tiers

the division's tiers

Constructors

Link copied to clipboard
constructor(name: String, flags: List<String>, largeIcon: String, smallIcon: String, pipIcon: String, tiers: List<GW2v2PvpSeason.Division.Tier>)

Types

Link copied to clipboard
@Serializable
data class Tier(val points: Int)

Information about a division's tier.

Properties

Link copied to clipboard

This field holds the flags providing additional information about the division.

Link copied to clipboard
@SerialName(value = "large_icon")
val largeIcon: String

This field holds the render service URL for the division's large icon.

Link copied to clipboard

This field holds the division's localized name.

Link copied to clipboard
@SerialName(value = "pip_icon")
val pipIcon: String

This field holds the render service URL for the division's pip icon.

Link copied to clipboard
@SerialName(value = "small_icon")
val smallIcon: String

This field holds the render service URL for the division's small icon.

Link copied to clipboard

This field holds the division's tiers.