Item

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

Constructors

Link copied to clipboard
fun Item(    sku: String? = null,     name: String? = null,     groups: List<Group> = emptyList(),     attributes: List<ItemAttributes> = emptyList(),     type: String? = null,     bundleType: String? = null,     description: String? = null,     imageUrl: String? = null,     isFree: Boolean,     price: Price? = null,     virtualPrices: List<VirtualPrice> = emptyList(),     content: List<Content> = emptyList(),     promotions: List<Promotion> = emptyList(),     limits: ItemLimits? = null)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val attributes: List<ItemAttributes>
Link copied to clipboard
@SerializedName(value = "bundle_type")
val bundleType: String? = null
Link copied to clipboard
val content: List<Content>
Link copied to clipboard
val description: String? = null
Link copied to clipboard
val groups: List<Group>
Link copied to clipboard
@SerializedName(value = "image_url")
val imageUrl: String? = null
Link copied to clipboard
@SerializedName(value = "is_free")
val isFree: Boolean
Link copied to clipboard
val limits: ItemLimits? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
val price: Price? = null
Link copied to clipboard
val promotions: List<Promotion>
Link copied to clipboard
val sku: String? = null
Link copied to clipboard
val type: String? = null
Link copied to clipboard
@SerializedName(value = "virtual_prices")
val virtualPrices: List<VirtualPrice>

Sources

Link copied to clipboard