Training

@Serializable
data class Training(val id: Int, val category: String, val name: String, val track: List<GW2v2Profession.Training.Track>)

Information about training track.

Parameters

id

the training's ID

category

the training's category

name

the training's localized name

track

array of skill/trait in the training track

Constructors

Link copied to clipboard
constructor(id: Int, category: String, name: String, track: List<GW2v2Profession.Training.Track>)

Types

Link copied to clipboard
@Serializable
data class Track(val cost: Int, val type: String, val skillId: Int? = null, val traitId: Int? = null)

Information about a skill/trait in a track.

Properties

Link copied to clipboard

This field holds the training's category.

Link copied to clipboard
val id: Int

This field holds the training's ID.

Link copied to clipboard

This field holds the training's localized name.

Link copied to clipboard

This field holds array of skill/trait in the training track.