/** * 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.commerceruntime.fulfillment; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Properties of an item shipped in a physical package. */ @JsonIgnoreProperties(ignoreUnknown = true) public class PackageItem implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * This specifies the fulfillment type of digital package item. */ protected String fulfillmentItemType; public String getFulfillmentItemType() { return this.fulfillmentItemType; } public void setFulfillmentItemType(String fulfillmentItemType) { this.fulfillmentItemType = fulfillmentItemType; } /** * The line id associated with the fulfillment. */ protected Integer lineId; public Integer getLineId() { return this.lineId; } public void setLineId(Integer lineId) { this.lineId = lineId; } /** * Fully qualified name of the selected option's attribute. Bundledproducts result from a static bundle or are dynamically added as a result of the shopper selecting products as extras. When the bundled item is dynamic, it includes the attribute's fully qualified name of the extra that it came from. When `optionAttributeFQN `is null, the bundled item was statically defined. When not null, the item came from an extra selection. */ protected String optionAttributeFQN; public String getOptionAttributeFQN() { return this.optionAttributeFQN; } public void setOptionAttributeFQN(String optionAttributeFQN) { this.optionAttributeFQN = optionAttributeFQN; } /** * 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 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; } }