QuickStatus

@Serializable
data class QuickStatus(val productId: String? = null, val sellPrice: Double? = null, val sellVolume: Long? = null, val sellMovingWeek: Long? = null, val sellOrders: Int? = null, val buyPrice: Double? = null, val buyVolume: Long? = null, val buyMovingWeek: Long? = null, val buyOrders: Int? = null)

General information about an item

Constructors

Link copied to clipboard
constructor(productId: String? = null, sellPrice: Double? = null, sellVolume: Long? = null, sellMovingWeek: Long? = null, sellOrders: Int? = null, buyPrice: Double? = null, buyVolume: Long? = null, buyMovingWeek: Long? = null, buyOrders: Int? = null)

Properties

Link copied to clipboard
val buyMovingWeek: Long? = null

Total items bought the past week

Link copied to clipboard
val buyOrders: Int? = null

Total amount of active buy orders

Link copied to clipboard
val buyPrice: Double? = null

Current highest buy price

Link copied to clipboard
val buyVolume: Long? = null

Total amount of items in buy orders

Link copied to clipboard
val productId: String? = null

The item ID of the item

Link copied to clipboard
val sellMovingWeek: Long? = null

Total items sold the past week

Link copied to clipboard
val sellOrders: Int? = null

Total amount of active sell orders

Link copied to clipboard
val sellPrice: Double? = null

Current highest sell price

Link copied to clipboard
val sellVolume: Long? = null

Total amount of items in sell orders