Package com.xsolla.android.store.entity.response.bundle
Types
Link copied to clipboard
data class BundleContent( val sku: String, val name: String, val description: String, val type: String, val imageUrl: String, val quantity: Int, val price: Price? = null, val virtualPrices: List<VirtualPrice> = emptyList())
Content copied to clipboard
Link copied to clipboard
data class BundleItem( val sku: String, val name: String, val groups: List<Group> = emptyList(), val description: String, val attributes: List<Any> = emptyList(), val type: String, val bundleType: String, val imageUrl: String? = null, val isFree: Boolean = false, val price: Price? = null, val totalContentPrice: Price? = null, val virtualPrices: List<VirtualPrice> = emptyList(), val content: List<BundleContent> = emptyList(), val promotions: List<Promotion> = emptyList(), val limits: ItemLimits? = null)
Content copied to clipboard
Link copied to clipboard