VirtualCurrencyPackageResponse
data class VirtualCurrencyPackageResponse(val hasMore: Boolean = false, val items: List<VirtualCurrencyPackageResponse.Item> = emptyList())
Content copied to clipboard
Constructors
Link copied to clipboard
fun VirtualCurrencyPackageResponse(hasMore: Boolean = false, items: List<VirtualCurrencyPackageResponse.Item> = emptyList())
Content copied to clipboard
Types
Link copied to clipboard
data class Item( val sku: String? = null, val name: String? = null, val groups: List<Group> = emptyList(), val attributes: List<ItemAttributes> = emptyList(), val type: String? = null, val bundleType: String? = null, val description: String? = null, val imageUrl: String? = null, val isFree: Boolean, val price: Price? = null, val virtualPrices: List<VirtualPrice> = emptyList(), val content: List<Content> = emptyList(), val promotions: List<Promotion> = emptyList(), val limits: ItemLimits? = null) : Parcelable
Content copied to clipboard