ItemEntry

@Serializable
data class ItemEntry(val itemId: Int, val name: String, val description: String?, val count: Int, val tier: Int)(source)

An in-game item in an Auction.

Constructors

Link copied to clipboard
constructor(itemId: Int, name: String, description: String?, count: Int, tier: Int)

Properties

Link copied to clipboard
val count: Int

The amount of this item the character has.

Link copied to clipboard

The description or flavor text of the item, if any.

Link copied to clipboard

The URL to the item's image.

Link copied to clipboard
val itemId: Int

The internal ID of the item.

Link copied to clipboard

The name of the item.

Link copied to clipboard
val tier: Int

The upgrade tier of the item.