CurrentlyShown

@Serializable
data class CurrentlyShown(val lastUploadTime: Long, val listings: Array<Listing>? = null, val recentHistory: Array<Sale>? = null, val currentAveragePrice: Double, val currentAveragePriceNq: Double, val currentAveragePriceHq: Double, val regularSaleVelocity: Double, val nqSaleVelocity: Double, val hqSaleVelocity: Double, val averagePrice: Double, val averagePriceNq: Double, val averagePriceHq: Double, val minPrice: Int, val minPriceNq: Int, val minPriceHq: Int, val maxPrice: Int, val maxPriceNq: Int, val maxPriceHq: Int, val stackSizeHistogram: StackSizeHistogram = null, val stackSizeHistogramNq: StackSizeHistogram = null, val stackSizeHistogramHq: StackSizeHistogram = null, worldIdUploadTimes: Map<Short, Long>? = null, val listingsCount: Int, val recentHistoryCount: Int, val unitsForSale: Int, val unitsSold: Int) : MarketBoard

Constructors

Link copied to clipboard
constructor(lastUploadTime: Long, listings: Array<Listing>? = null, recentHistory: Array<Sale>? = null, currentAveragePrice: Double, currentAveragePriceNq: Double, currentAveragePriceHq: Double, regularSaleVelocity: Double, nqSaleVelocity: Double, hqSaleVelocity: Double, averagePrice: Double, averagePriceNq: Double, averagePriceHq: Double, minPrice: Int, minPriceNq: Int, minPriceHq: Int, maxPrice: Int, maxPriceNq: Int, maxPriceHq: Int, stackSizeHistogram: StackSizeHistogram = null, stackSizeHistogramNq: StackSizeHistogram = null, stackSizeHistogramHq: StackSizeHistogram = null, worldIdUploadTimes: Map<Short, Long>? = null, listingsCount: Int, recentHistoryCount: Int, unitsForSale: Int, unitsSold: Int)

Properties

Link copied to clipboard

The average sale price, with outliers removed beyond 3 standard deviations of the mean.

Link copied to clipboard
@SerialName(value = "averagePriceHQ")
val averagePriceHq: Double

The average HQ sale price, with outliers removed beyond 3 standard deviations of the mean.

Link copied to clipboard
@SerialName(value = "averagePriceNQ")
val averagePriceNq: Double

The average NQ sale price, with outliers removed beyond 3 standard deviations of the mean.

Link copied to clipboard

The average listing price, with outliers removed beyond 3 standard deviations of the mean.

Link copied to clipboard
@SerialName(value = "currentAveragePriceHQ")
val currentAveragePriceHq: Double

The average HQ listing price, with outliers removed beyond 3 standard deviations of the mean.

Link copied to clipboard
@SerialName(value = "currentAveragePriceNQ")
val currentAveragePriceNq: Double

The average NQ listing price, with outliers removed beyond 3 standard deviations of the mean.

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
val listings: Array<Listing>? = null

The currently-shown listings.

Link copied to clipboard

The number of listings retrieved for the request.

Link copied to clipboard

The maximum listing price.

Link copied to clipboard
@SerialName(value = "maxPriceHQ")
val maxPriceHq: Int

The maximum HQ listing price.

Link copied to clipboard
@SerialName(value = "maxPriceNQ")
val maxPriceNq: Int

The maximum NQ listing price.

Link copied to clipboard

The minimum listing price.

Link copied to clipboard
@SerialName(value = "minPriceHQ")
val minPriceHq: Int

The minimum HQ listing price.

Link copied to clipboard
@SerialName(value = "minPriceNQ")
val minPriceNq: Int

The minimum NQ listing price.

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 recentHistory: Array<Sale>? = null

The currently-shown sales.

Link copied to clipboard

The number of sale entries retrieved for the request.

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 listing counts, representing the number of listings of each quantity.

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

A Map of quantities to HQ listing counts, representing the number of listings of each quantity.

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

A Map of quantities to NQ listing counts, representing the number of listings of each quantity.

Link copied to clipboard

The number of items (not listings) up for sale.

Link copied to clipboard

The number of items (not sale entries) sold over the retrieved sales.

Link copied to clipboard
@Transient
val worldUploadTimes: Map<World, Long>?

The last upload times in milliseconds since epoch for each World in the response.

Functions

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