GW2v2Quest

@Serializable
data class GW2v2Quest(val id: Int, val name: String, val level: Int, val story: Int, val goals: List<GW2v2Quest.Goal>)

Information about a quest.

Parameters

id

the quest's ID

name

the quest's localized name

level

the minimum level required to begin the quest

story

the story's ID

goals

the quest's goals

Constructors

Link copied to clipboard
constructor(id: Int, name: String, level: Int, story: Int, goals: List<GW2v2Quest.Goal>)

Types

Link copied to clipboard
@Serializable
data class Goal(val active: String, val complete: String)

Information about a quest's goal.

Properties

Link copied to clipboard

This field holds the quest's goals.

Link copied to clipboard
val id: Int

This field holds the quest's ID.

Link copied to clipboard
val level: Int

This field holds the minimum level required to begin the quest.

Link copied to clipboard

This field holds the quest's localized name.

Link copied to clipboard
val story: Int

This field holds the story's ID.