/** * 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.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Mozu.ProductAdmin.Contracts.ProductVariationFixedPrice ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class ProductVariationFixedPrice implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The credit value of the product or bundled product. When the `goodsType `is `DigitalCredit`, this value is populated to indicate the value of the credit. This is used to create store credit in the fulfillment of gift cards. */ protected Double creditValue; public Double getCreditValue() { return this.creditValue; } public void setCreditValue(Double creditValue) { this.creditValue = creditValue; } /** * The localized currency code for the monetary amount. */ protected String currencyCode; public String getCurrencyCode() { return this.currencyCode; } public void setCurrencyCode(String currencyCode) { this.currencyCode = currencyCode; } /** * Variation price for fixed pricing */ protected Double listPrice; public Double getListPrice() { return this.listPrice; } public void setListPrice(Double listPrice) { this.listPrice = listPrice; } /** * The manufacturer's suggested retail price for the product. This content may be defined by the supplier. */ protected Double msrp; public Double getMsrp() { return this.msrp; } public void setMsrp(Double msrp) { this.msrp = msrp; } /** * The set sale price for a product consisting of a price with a discount already applied. */ protected Double salePrice; public Double getSalePrice() { return this.salePrice; } public void setSalePrice(Double salePrice) { this.salePrice = salePrice; } }