ItemDetail

@Serializable
data class ItemDetail(val name: String, val description: String, val current: PriceInfo)

A data class representing detailed information about an item in RuneScape.

This class includes the item's name, description, and current price information.

Constructors

Link copied to clipboard
constructor(name: String, description: String, current: PriceInfo)

Properties

Link copied to clipboard

The current price information for the item, represented by PriceInfo.

Link copied to clipboard

A brief description of the item.

Link copied to clipboard

The name of the item.