GW2v2Mailcarrier

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

Information about a mailcarrier.

Parameters

id

the mailcarrier's ID

icon

the URL for the mailcarrier's icon

name

the mailcarrier's name

order

a number that can be used to sort the list of mailcarriers

unlockItems

the IDs of the items that can be used to unlock the mailcarrier

flags

additional flags describing the mailcarrier

Constructors

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

Properties

Link copied to clipboard

This field holds additional flags describing the mailcarrier.

Link copied to clipboard

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

Link copied to clipboard
val id: Int

This field holds the mailcarrier's ID.

Link copied to clipboard

This field holds the mailcarrier's name.

Link copied to clipboard
val order: Int

This field holds a number that can be used to sort the list of mailcarriers.

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

This field holds the IDs of the items that can be used to unlock the mailcarrier.