PriceInfo

@Serializable
data class PriceInfo(val trend: String, val price: String)

A data class representing the price information of an item in RuneScape.

This class includes the current price and the trend of the price (e.g., rising, falling).

Constructors

Link copied to clipboard
constructor(trend: String, price: String)

Properties

Link copied to clipboard

The current price of the item as a string.

Link copied to clipboard

The trend of the item's price (e.g., "rising", "falling").