Item

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)

Constructors

Link copied to clipboard
fun Item(    sku: String,     name: String,     type: ItemType,     description: String? = null,     imageUrl: String? = null,     unitItems: List<UnitItem>? = null,     virtualItemType: VirtualItemType? = null,     bundleType: String? = null,     bundleContent: BundleContent? = null)

Properties

Link copied to clipboard
@SerializedName(value = "content")
val bundleContent: BundleContent? = null
Link copied to clipboard
@SerializedName(value = "bundle_type")
val bundleType: String? = null
Link copied to clipboard
val description: String? = null
Link copied to clipboard
@SerializedName(value = "image_url")
val imageUrl: String? = null
Link copied to clipboard
val name: String
Link copied to clipboard
val sku: String
Link copied to clipboard
val type: ItemType
Link copied to clipboard
@SerializedName(value = "unit_items")
val unitItems: List<UnitItem>? = null
Link copied to clipboard
@SerializedName(value = "virtual_item_type")
val virtualItemType: VirtualItemType? = null

Sources

Link copied to clipboard