/** * 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.productruntime; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Mozu.ProductRuntime.Contracts.PriceListNode ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class PriceListNode implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Mozu.ProductRuntime.Contracts.PriceListNode parentPriceListId ApiTypeMember DOCUMENT_HERE */ protected Integer parentPriceListId; public Integer getParentPriceListId() { return this.parentPriceListId; } public void setParentPriceListId(Integer parentPriceListId) { this.parentPriceListId = parentPriceListId; } /** * Mozu.ProductRuntime.Contracts.PriceListNode priceListCode ApiTypeMember DOCUMENT_HERE */ protected String priceListCode; public String getPriceListCode() { return this.priceListCode; } public void setPriceListCode(String priceListCode) { this.priceListCode = priceListCode; } /** * Mozu.ProductRuntime.Contracts.PriceListNode priceListId ApiTypeMember DOCUMENT_HERE */ protected Integer priceListId; public Integer getPriceListId() { return this.priceListId; } public void setPriceListId(Integer priceListId) { this.priceListId = priceListId; } /** * Mozu.ProductRuntime.Contracts.PriceListNode priceListLevel ApiTypeMember DOCUMENT_HERE */ protected Integer priceListLevel; public Integer getPriceListLevel() { return this.priceListLevel; } public void setPriceListLevel(Integer priceListLevel) { this.priceListLevel = priceListLevel; } }