GW2v2Glider

@Serializable
data class GW2v2Glider(val id: Int, val name: String, val description: String, val icon: String, val order: Int, val defaultDyes: List<Int>, val unlockItems: List<GW2ItemId>)

Information about a glider.

Parameters

id

the glider's ID

name

the glider's name

description

the glider's description

icon

the URL for the glider's icon

order

a (non-unique) number that can be used as basis to sort the list of gliders

defaultDyes

the IDs of the dyes that are applied to the glider by default

unlockItems

an array of item IDs used to unlock the glider

Constructors

Link copied to clipboard
constructor(id: Int, name: String, description: String, icon: String, order: Int, defaultDyes: List<Int>, unlockItems: List<GW2ItemId>)

Properties

Link copied to clipboard
@SerialName(value = "default_dyes")
val defaultDyes: List<Int>

This field holds the IDs of the dyes that are applied to the glider by default.

Link copied to clipboard

This field holds the glider's description.

Link copied to clipboard

This field holds the URL for the glider's icon.

Link copied to clipboard
val id: Int

This field holds the glider's ID.

Link copied to clipboard

This field holds the glider's name.

Link copied to clipboard
val order: Int

This field holds a (non-unique) number that can be used as basis to sort the list of gliders.

Link copied to clipboard
@SerialName(value = "unlock_items")
val unlockItems: List<GW2ItemId>

This field holds an array of item IDs used to unlock the glider.