GW2v2Finisher

@Serializable
data class GW2v2Finisher(val id: Int, val name: String, val icon: String, val order: Int, val unlockDetails: String, val unlockItems: List<GW2ItemId>)

Information about a finisher.

Parameters

id

the finisher's ID

name

the finisher's name

icon

the URL for the finisher's icon

order

a (non-unique) number that can be used as basis to sort the list of finishers

unlockDetails

a description explaining how to acquire the finisher

unlockItems

an array of item IDs used to unlock the finisher

Constructors

Link copied to clipboard
constructor(id: Int, name: String, icon: String, order: Int, unlockDetails: String, unlockItems: List<GW2ItemId>)

Properties

Link copied to clipboard

This field holds the URL for the finisher's icon.

Link copied to clipboard
val id: Int

This field holds the finisher's ID.

Link copied to clipboard

This field holds the finisher's name.

Link copied to clipboard
val order: Int

This field holds a (non-unique) number that can be used as basis to sort the list of finishers.

Link copied to clipboard
@SerialName(value = "unlock_details")
val unlockDetails: String

This field holds a description explaining how to acquire the finisher.

Link copied to clipboard
@SerialName(value = "unlock_items")
val unlockItems: List<GW2ItemId>

This field holds an array of item IDs used to unlock the finisher.