Skin

@Serializable
data class Skin(val id: Int, val name: String, val icon: String, val default: Boolean, val unlockItems: List<GW2ItemId>)

Information about a PvP hero's skin.

Parameters

id

the PvP hero skin's ID

name

the hero skin's localized name

icon

a render service URL for the skin's icon

default

whether the skin is the champion's default skin

unlockItems

an array of item IDs used to unlock the skin

Constructors

Link copied to clipboard
constructor(id: Int, name: String, icon: String, default: Boolean, unlockItems: List<GW2ItemId>)

Properties

Link copied to clipboard

This field holds whether the skin is the champion's default skin.

Link copied to clipboard

This field holds a render service URL for the skin's icon.

Link copied to clipboard
val id: Int

This field holds the PvP hero skin's ID.

Link copied to clipboard

This field holds the hero skin's localized name.

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

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