GW2v2MountType

@Serializable
data class GW2v2MountType(val id: String, val name: String, val defaultSkin: Int, val skins: List<Int>, val skills: List<GW2v2MountType.Skill>)

Information about a mount type.

Parameters

id

the mount type's ID

name

the mount type's name

defaultSkin

the ID of the mount type's default skin

skins

the IDs of the skins available for the mount type

skills

the mount type's skills

Constructors

Link copied to clipboard
constructor(id: String, name: String, defaultSkin: Int, skins: List<Int>, skills: List<GW2v2MountType.Skill>)

Types

Link copied to clipboard
@Serializable
data class Skill(val id: Int, val slot: String)

Information about a mount skill.

Properties

Link copied to clipboard
@SerialName(value = "default_skin")
val defaultSkin: Int

This field holds the ID of the mount type's default skin.

Link copied to clipboard
val id: String

This field holds the mount type's ID.

Link copied to clipboard

This field holds the mount type's name.

Link copied to clipboard

This field holds the mount type's skills.

Link copied to clipboard
val skins: List<Int>

This field holds the IDs of the skins available for the mount type.