/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.productadmin; import java.util.List; import java.util.HashMap; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; import com.mozu.api.contracts.core.Measurement; import com.mozu.api.contracts.productadmin.ProductPrice; /** * Properties of a component product in a product bundle. A product bundle can represent either a collection of multiple products sold as a single entity, or a collection of the same product sold as a package. For example, a 10-pack of socks. */ @JsonIgnoreProperties(ignoreUnknown = true) public class BundledProduct implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * List of supported types of fulfillment for the product or variation. The types include direct ship, in-store pickup, or both. */ protected List<String> fulfillmentTypesSupported; public List<String> getFulfillmentTypesSupported() { return this.fulfillmentTypesSupported; } public void setFulfillmentTypesSupported(List<String> fulfillmentTypesSupported) { this.fulfillmentTypesSupported = fulfillmentTypesSupported; } /** * Merchant-created code that uniquely identifies the product such as a SKU or item number. Once created, the product code is read-only. */ protected String productCode; public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; } /** * The name of the product that represents a line item in a taxable order or product bundle. */ protected String productName; public String getProductName() { return this.productName; } public void setProductName(String productName) { this.productName = productName; } /** * The specified quantity of objects and items. This property is used for numerous object types including products, options, components within a product bundle, cart and order items, returned items, shipping line items, items in a digital product. and items associated with types and reservations. */ protected Integer quantity; public Integer getQuantity() { return this.quantity; } public void setQuantity(Integer quantity) { this.quantity = quantity; } /** * Height of a package or bundle package in imperial units of feet and inches. */ protected Measurement packageHeight; public Measurement getPackageHeight() { return this.packageHeight; } public void setPackageHeight(Measurement packageHeight) { this.packageHeight = packageHeight; } /** * Length of a package or bundle package in imperial units of feet and inches. */ protected Measurement packageLength; public Measurement getPackageLength() { return this.packageLength; } public void setPackageLength(Measurement packageLength) { this.packageLength = packageLength; } /** * Weight of a package or bundle package in imperial units of pounds and ounces. */ protected Measurement packageWeight; public Measurement getPackageWeight() { return this.packageWeight; } public void setPackageWeight(Measurement packageWeight) { this.packageWeight = packageWeight; } /** * Width of a package or bundle package in imperial units of feet and inches. */ protected Measurement packageWidth; public Measurement getPackageWidth() { return this.packageWidth; } public void setPackageWidth(Measurement packageWidth) { this.packageWidth = packageWidth; } /** * The price of the bundled product set for the tenant. */ protected ProductPrice price; public ProductPrice getPrice() { return this.price; } public void setPrice(ProductPrice price) { this.price = price; } }