History

@Serializable
data class History(val lastUploadTime: Long, val entries: Array<MinimizedSale>? = null, val stackSizeHistogram: StackSizeHistogram = null, val stackSizeHistogramNq: StackSizeHistogram = null, val stackSizeHistogramHq: StackSizeHistogram = null, val regularSaleVelocity: Double, val nqSaleVelocity: Double, val hqSaleVelocity: Double) : MarketBoard

Constructors

Link copied to clipboard
constructor(lastUploadTime: Long, entries: Array<MinimizedSale>? = null, stackSizeHistogram: StackSizeHistogram = null, stackSizeHistogramNq: StackSizeHistogram = null, stackSizeHistogramHq: StackSizeHistogram = null, regularSaleVelocity: Double, nqSaleVelocity: Double, hqSaleVelocity: Double)

Properties

Link copied to clipboard

The historical sales.

Link copied to clipboard

The average number of HQ sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).

Link copied to clipboard

The last upload time for this endpoint, in milliseconds since the UNIX epoch.

Link copied to clipboard

The average number of NQ sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).

Link copied to clipboard

The average number of sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).

Link copied to clipboard

A Map of quantities to sale counts, representing the number of sales of each quantity.

Link copied to clipboard
@SerialName(value = "stackSizeHistogramHQ")
val stackSizeHistogramHq: StackSizeHistogram = null

A Map of quantities to HQ sale counts, representing the number of sales of each quantity.

Link copied to clipboard
@SerialName(value = "stackSizeHistogramNQ")
val stackSizeHistogramNq: StackSizeHistogram = null

A Map of quantities to NQ sale counts, representing the number of sales of each quantity.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int