GW2v2MountSkin

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

Information about a mount skin.

Parameters

id

the mount skin's ID

name

the mount skin's name

icon

a render service URL for the mount skin's icon

mount

the mount type id for the mount skin

dyeSlots

the mount skin's dye slots

Constructors

Link copied to clipboard
constructor(id: Int, name: String, icon: String, mount: String, dyeSlots: List<GW2v2MountSkin.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<GW2v2MountSkin.DyeSlot>

This field holds the mount skin's dye slots.

Link copied to clipboard

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

Link copied to clipboard
val id: Int

This field holds the mount skin's ID.

Link copied to clipboard

This field holds the mount type id for the mount skin.

Link copied to clipboard

This field holds the mount skin's name.