ItemPriceResponse

@Serializable
data class ItemPriceResponse(val id: String, val timestamp: String, val price: Int, val volume: Int)

A data class representing the response containing price information for an item in RuneScape.

This class includes details such as the item's ID, the timestamp of the price data, the current price, and the trading volume.

Constructors

Link copied to clipboard
constructor(id: String, timestamp: String, price: Int, volume: Int)

Properties

Link copied to clipboard
val id: String

The unique identifier for the item.

Link copied to clipboard
val price: Int

The current price of the item in coins.

Link copied to clipboard

The timestamp indicating when the price data was recorded.

Link copied to clipboard
val volume: Int

The trading volume of the item (i.e., the number of items traded).