MinimizedSale

@Serializable
data class MinimizedSale(val hq: Boolean, val pricePerUnit: Int, val quantity: Byte, val buyerName: String? = null, val onMannequin: Boolean? = null, val timestamp: Long, val worldName: String? = null, val worldId: Short? = null)

Constructors

Link copied to clipboard
constructor(hq: Boolean, pricePerUnit: Int, quantity: Byte, buyerName: String? = null, onMannequin: Boolean? = null, timestamp: Long, worldName: String? = null, worldId: Short? = null)

Properties

Link copied to clipboard
val buyerName: String? = null

The buyer's character name

Link copied to clipboard
val hq: Boolean

Whether or not the item was high-quality

Link copied to clipboard
val onMannequin: Boolean? = null

Whether or not this was purchased from a mannequin

Link copied to clipboard

The price per unit sold

Link copied to clipboard

The stack size sold

Link copied to clipboard

The sale time, in seconds since the UNIX epoch

Link copied to clipboard
@SerialName(value = "worldID")
val worldId: Short? = null

The world ID, if applicable

Link copied to clipboard
val worldName: String? = null

The world name, if applicable