/** * 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.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Settings for search synonyms for search results. */ @JsonIgnoreProperties(ignoreUnknown = true) public class SearchSynonymSettings implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Boosts the synonyms to affect rankings for search results. */ protected Double synonymPartBoost; public Double getSynonymPartBoost() { return this.synonymPartBoost; } public void setSynonymPartBoost(Double synonymPartBoost) { this.synonymPartBoost = synonymPartBoost; } /** * Indicates if synonyms should be expanded. */ protected Boolean expandSynonyms; public Boolean getExpandSynonyms() { return this.expandSynonyms; } public void setExpandSynonyms(Boolean expandSynonyms) { this.expandSynonyms = expandSynonyms; } /** * Sets the boost for the words actually sent in the query. */ protected Double mainPartBoost; public Double getMainPartBoost() { return this.mainPartBoost; } public void setMainPartBoost(Double mainPartBoost) { this.mainPartBoost = mainPartBoost; } }