/** * 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; /** * Mozu.ProductAdmin.Contracts.Search.SearchTuningRuleSortFields ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class SearchTuningRuleSortFields implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Specifies whether you want the product properties in sortFields to be white listed or black listed. When you white list a product property, any search tuning rules that affect that product property will be in effect whenever a shopper sorts by that product property. When you black list a product product, any search tuning rules that affect that product property will never be in effect whenever a shopper sorts by that product property.Valid values are: "WhiteList" or "BlackList".For more information about search tuning rule sort fields, refer to [Search Tuning Rules](../../../../developer/api-guides/search-tuning-rules.htm). */ protected String inclusionExclusionType; public String getInclusionExclusionType() { return this.inclusionExclusionType; } public void setInclusionExclusionType(String inclusionExclusionType) { this.inclusionExclusionType = inclusionExclusionType; } /** * A list of product properties that you want to apply the search tuning rule sort fields to. For example, you can set this field to "popularity" in order to make all search tuning rules that affect product popularity to always be in effect whenever a shopper sorts by popularity. */ protected List<String> sortFields; public List<String> getSortFields() { return this.sortFields; } public void setSortFields(List<String> sortFields) { this.sortFields = sortFields; } }