GW2v2CharactersBuildTab

@Serializable
data class GW2v2CharactersBuildTab(val tab: Int, val isActive: Boolean, val build: GW2v2CharactersBuildTab.Build)

Information about a character's build tab.

Parameters

tab

the tab's ID

isActive

a flag indicating whether this tab is the active tab

build

the stored build

Constructors

Link copied to clipboard
constructor(tab: Int, isActive: Boolean, build: GW2v2CharactersBuildTab.Build)

Types

Link copied to clipboard
@Serializable
data class Build(val name: String, val profession: String, val specializations: List<GW2v2CharactersBuildTab.Build.Specialization>, val skills: GW2v2CharactersBuildTab.Build.Skills, val aquaticSkills: GW2v2CharactersBuildTab.Build.Skills, val legends: List<String?>? = null, val aquaticLegends: List<String?>? = null)

Information about a build.

Properties

Link copied to clipboard

This field holds the stored build.

Link copied to clipboard
@SerialName(value = "is_active")
val isActive: Boolean

This field holds a flag indicating whether this tab is the active tab.

Link copied to clipboard
val tab: Int

This field holds the tab's ID.