GW2v2CommercePrices

@Serializable
data class GW2v2CommercePrices(val id: GW2ItemId, val whitelisted: Boolean, val buys: GW2v2CommercePrices.BuyListing, val sells: GW2v2CommercePrices.SellListing)

Information about an item listed in the trading post.

Parameters

id

the item's ID

whitelisted

indicates whether a free to play account can purchase or sell this item on the trading post

buys

the buy information

sells

the sell information

Constructors

Link copied to clipboard

Types

Link copied to clipboard
@Serializable
data class BuyListing(val unitPrice: Int, val quantity: Int)

Information about an item's buy listing.

Link copied to clipboard
@Serializable
data class SellListing(val unitPrice: Int, val quantity: Int)

Information about an item's sell listing.

Properties

Link copied to clipboard

This field holds the buy information.

Link copied to clipboard

This field holds the item's ID.

Link copied to clipboard

This field holds the sell information.

Link copied to clipboard

This field holds indicates whether a free to play account can purchase or sell this item on the trading post.