Record Class HistoryView

java.lang.Object
java.lang.Record
de.chojo.universalis.entities.views.HistoryView
Record Components:
item - item
world - world
lastUploadTime - The last upload time for this endpoint
entries - The historical sales.
datacenter - datacenter
region - region
stackSizeHistogram - A map of quantities to sale counts, representing the number of sales of each quantity.
stackSizeHistogramNQ - A map of quantities to NQ sale counts, representing the number of sales of each quantity.
stackSizeHistogramHQ - A map of quantities to HQ sale counts, representing the number of sales of each quantity.
regularSaleVelocity - The average number of sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).
nqSaleVelocity - The average number of NQ sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).
hqSaleVelocity - The average number of HQ sales per day, over the past seven days (or the entirety of the shown sales, whichever comes first).

public record HistoryView(Item item, @Nullable World world, LocalDateTime lastUploadTime, @Nullable List<MinimizedSaleView> entries, @Nullable DataCenter datacenter, @Nullable Region region, @Nullable Map<String,Integer> stackSizeHistogram, @Nullable Map<String,Integer> stackSizeHistogramNQ, @Nullable Map<String,Integer> stackSizeHistogramHQ, float regularSaleVelocity, float nqSaleVelocity, float hqSaleVelocity) extends Record