/** * 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; import com.mozu.api.contracts.productadmin.AttributeVocabularyValueDisplayInfo; import com.mozu.api.contracts.productadmin.AttributeVocabularyValue; /** * The actual vocabulary value of the attribute that exists as a part of the product type. */ @JsonIgnoreProperties(ignoreUnknown = true) public class AttributeVocabularyValueInProductType implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Integer that represents the sequence order of the attribute. */ protected Integer order; public Integer getOrder() { return this.order; } public void setOrder(Integer order) { this.order = order; } /** * The value of a property, used by numerous objects within including facets, attributes, products, localized content, metadata, capabilities ( and third-party), location inventory adjustment, and more. The value may be a string, integer, or double. Validation may be run against the entered and saved values depending on the object type. */ protected Object value; public Object getValue() { return this.value; } public void setValue(Object value) { this.value = value; } /** * Defines the intended display of this attribute in the storefront. Options include Drop Down, Image Picker, and Radio Buttons. */ protected AttributeVocabularyValueDisplayInfo displayInfo; public AttributeVocabularyValueDisplayInfo getDisplayInfo() { return this.displayInfo; } public void setDisplayInfo(AttributeVocabularyValueDisplayInfo displayInfo) { this.displayInfo = displayInfo; } /** * Navigates vocabulary value details for an attribute defined for a product type. */ protected AttributeVocabularyValue vocabularyValueDetail; public AttributeVocabularyValue getVocabularyValueDetail() { return this.vocabularyValueDetail; } public void setVocabularyValueDetail(AttributeVocabularyValue vocabularyValueDetail) { this.vocabularyValueDetail = vocabularyValueDetail; } }