/** * 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; /** * Content of the product property value in the language defined for the locale code. */ @JsonIgnoreProperties(ignoreUnknown = true) public class ProductPropertyValueLocalizedContent implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Language used for the entity. Currently, only "en-US" is supported. */ protected String localeCode; public String getLocaleCode() { return this.localeCode; } public void setLocaleCode(String localeCode) { this.localeCode = localeCode; } /** * If the object value is a String, this value provides that string value, used by vocabulary property values, products, and options. */ protected String stringValue; public String getStringValue() { return this.stringValue; } public void setStringValue(String stringValue) { this.stringValue = stringValue; } }