History

@Serializable
data class History(val itemId: Int, val worldId: Short? = null, val lastUploadTime: Long, val entries: List<MinimizedSale>? = null, val dcName: String? = null, val regionName: String? = null, val stackSizeHistogram: Map<String, Int>? = null, val stackSizeHistogramNq: Map<String, Int>? = null, val stackSizeHistogramHq: Map<String, Int>? = null, val regularSaleVelocity: Double, val nqSaleVelocity: Double, val hqSaleVelocity: Double, val worldName: String? = null) : MarketBoard

Constructors

Link copied to clipboard
constructor(itemId: Int, worldId: Short? = null, lastUploadTime: Long, entries: List<MinimizedSale>? = null, dcName: String? = null, regionName: String? = null, stackSizeHistogram: Map<String, Int>? = null, stackSizeHistogramNq: Map<String, Int>? = null, stackSizeHistogramHq: Map<String, Int>? = null, regularSaleVelocity: Double, nqSaleVelocity: Double, hqSaleVelocity: Double, worldName: String? = null)

Properties

Link copied to clipboard
val dcName: String? = null

The DC name, if applicable

Link copied to clipboard
val entries: List<MinimizedSale>? = null

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
@SerialName(value = "itemID")
val itemId: Int

The item ID

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
val regionName: String? = null

The region name, if applicable

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: Map<String, Int>? = 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: Map<String, Int>? = null

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

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