Package com.xsolla.android.store.entity.response.items
Types
Link copied to clipboard
Link copied to clipboard
data class DiscountedItems(val sku: String, val discount: RewardsByPromocodeResponse.Discount)
Content copied to clipboard
Link copied to clipboard
data class Item( val sku: String, val name: String, val type: ItemType, val description: String? = null, val imageUrl: String? = null, val unitItems: List<UnitItem>? = null, val virtualItemType: VirtualItemType? = null, val bundleType: String? = null, val bundleContent: BundleContent? = null)
Content copied to clipboard
Link copied to clipboard
data class ItemAttributes( val externalId: String? = null, val name: String? = null, val values: List<ValuesAttributes> = emptyList()) : Parcelable
Content copied to clipboard
Link copied to clipboard
data class PhysicalItemsResponse(val items: List<PhysicalItemsResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard
class RedeemCouponResponse(val items: List<RedeemCouponResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard
data class RewardsByCodeResponse(val bonus: List<Bonus>, val isSelectable: Boolean)
Content copied to clipboard
Link copied to clipboard
data class RewardsByPromocodeResponse( val bonus: List<Bonus>, val discount: RewardsByPromocodeResponse.Discount? = null, val discountedItems: List<DiscountedItems>? = null, val isSelectable: Boolean)
Content copied to clipboard
Link copied to clipboard
data class ValuesAttributes(val externalId: String? = null, val value: String? = null) : Parcelable
Content copied to clipboard
Link copied to clipboard
data class VirtualCurrencyPackageResponse(val hasMore: Boolean = false, val items: List<VirtualCurrencyPackageResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard
data class VirtualCurrencyResponse(val hasMore: Boolean = false, val items: List<VirtualCurrencyResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard
data class VirtualItemsResponse( val geoLocale: Locale? = null, val hasMore: Boolean = false, val items: List<VirtualItemsResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard
data class VirtualItemsShortResponse(val items: List<VirtualItemsShortResponse.Item> = emptyList())
Content copied to clipboard
Link copied to clipboard