VirtualCurrencyResponse

data class VirtualCurrencyResponse(val items: List<VirtualCurrencyResponse.Item> = emptyList())

Constructors

Link copied to clipboard
fun VirtualCurrencyResponse(items: List<VirtualCurrencyResponse.Item> = emptyList())

Types

Link copied to clipboard
data class Item(    val sku: String? = null,     val name: String? = null,     val groups: List<Group> = emptyList(),     val attributes: List<Any> = emptyList(),     val type: String? = null,     val description: String? = null,     val imageUrl: String? = null,     val isFree: Boolean,     val price: Price? = null,     val virtualPrices: List<VirtualPrice> = emptyList(),     val inventoryOption: InventoryOption? = null,     val promotions: List<Promotion> = emptyList(),     val limits: ItemLimits? = null)

Properties

Link copied to clipboard
val items: List<VirtualCurrencyResponse.Item>

Sources

Link copied to clipboard