/** * 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.paymentservice; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * The properties of a product, referenced and used by carts, orders, wish lists, and returns. */ @JsonIgnoreProperties(ignoreUnknown = true) public class Product implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The unique, user-defined product code of a product, used throughout Mozu to reference and associate to a product. */ 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; } /** * Mozu.PaymentService.Contracts.Product variantProductCode ApiTypeMember DOCUMENT_HERE */ protected String variantProductCode; public String getVariantProductCode() { return this.variantProductCode; } public void setVariantProductCode(String variantProductCode) { this.variantProductCode = variantProductCode; } }