/** * 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.search; import java.util.List; import java.util.HashMap; 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.search.SynonymDefinition; /** * A collection of synonym definitions. */ @JsonIgnoreProperties(ignoreUnknown = true) public class SynonymDefinitionCollection 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; } /** * Unique identifier for the site. This ID is used at all levels of a store, catalog, and tenant to associate objects to a site. */ protected Integer siteId; public Integer getSiteId() { return this.siteId; } public void setSiteId(Integer siteId) { this.siteId = siteId; } /** * Unique identifier of the Mozu tenant. */ protected Integer tenantId; public Integer getTenantId() { return this.tenantId; } public void setTenantId(Integer tenantId) { this.tenantId = tenantId; } /** * List of mappings for this definition. */ protected List<SynonymDefinition> synonymDefinitions; public List<SynonymDefinition> getSynonymDefinitions() { return this.synonymDefinitions; } public void setSynonymDefinitions(List<SynonymDefinition> synonymDefinitions) { this.synonymDefinitions = synonymDefinitions; } }