MinimizedSale

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

Constructors

Link copied to clipboard
constructor(hq: Boolean, pricePerUnit: Int, quantity: Short, buyerName: String? = null, onMannequin: Boolean? = null, timestamp: Long, world: World? = 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 = "worldName")
val world: World? = null

The World, if applicable.