GW2v2Mini

@Serializable
data class GW2v2Mini(val id: Int, val name: String, val description: String? = null, val icon: String, val order: Int, val itemId: GW2ItemId)

Information about a mini.

Parameters

id

the mini's ID

name

the mini's name

description

the description of how to unlock the mini

icon

the URL for the mini's icon

order

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

itemId

the ID of the item that can be used to unlock the mini

Constructors

Link copied to clipboard
constructor(id: Int, name: String, description: String? = null, icon: String, order: Int, itemId: GW2ItemId)

Properties

Link copied to clipboard
val description: String? = null

This field holds the description of how to unlock the mini.

Link copied to clipboard

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

Link copied to clipboard
val id: Int

This field holds the mini's ID.

Link copied to clipboard
@SerialName(value = "item_id")
val itemId: GW2ItemId

This field holds the ID of the item that can be used to unlock the mini.

Link copied to clipboard

This field holds the mini'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 minis.