Product

@Serializable
data class Product(val productId: String? = null, val sellSummary: List<Summary>? = null, val buySummary: List<Summary>? = null, val quickStatus: QuickStatus? = null)

Information about a bazaar product.

Constructors

Link copied to clipboard
constructor(productId: String? = null, sellSummary: List<Summary>? = null, buySummary: List<Summary>? = null, quickStatus: QuickStatus? = null)

Properties

Link copied to clipboard
@SerialName(value = "buy_summary")
val buySummary: List<Summary>? = null

A list of buy orders for the item.

Link copied to clipboard
@SerialName(value = "product_id")
val productId: String? = null

The item ID of the item.

Link copied to clipboard
@SerialName(value = "quick_status")
val quickStatus: QuickStatus? = null

General information about the item.

Link copied to clipboard
@SerialName(value = "sell_summary")
val sellSummary: List<Summary>? = null

A list of sell orders for the item.