GW2v2Skiff

@Serializable
data class GW2v2Skiff(val id: Int, val name: String, val icon: String, val dyeSlots: List<GW2v2Skiff.DyeSlot>)

Information about a skiff skin.

Parameters

id

the skin's ID

name

the skin's name

icon

a render service URL for the skin's icon

dyeSlots

the skin's dye slots

Constructors

Link copied to clipboard
constructor(id: Int, name: String, icon: String, dyeSlots: List<GW2v2Skiff.DyeSlot>)

Types

Link copied to clipboard
@Serializable
data class DyeSlot(val colorId: Int, val material: String)

Information about a dye slot.

Properties

Link copied to clipboard
@SerialName(value = "dye_slots")
val dyeSlots: List<GW2v2Skiff.DyeSlot>

This field holds the skin's dye slots.

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 skin's ID.

Link copied to clipboard

This field holds the skin's name.