All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.algolia.search.models.personalization.SetStrategyRequest Maven / Gradle / Ivy

There is a newer version: 3.16.9
Show newest version
package com.algolia.search.models.personalization;

import com.fasterxml.jackson.annotation.JsonInclude;
import java.io.Serializable;
import java.util.Map;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Deprecated
public class SetStrategyRequest implements Serializable {

  public SetStrategyRequest() {}

  public SetStrategyRequest(
      Map eventsScoring, Map facetsScoring) {
    this.eventsScoring = eventsScoring;
    this.facetsScoring = facetsScoring;
  }

  public Map getEventsScoring() {
    return eventsScoring;
  }

  public SetStrategyRequest setEventsScoring(Map eventsScoring) {
    this.eventsScoring = eventsScoring;
    return this;
  }

  public Map getFacetsScoring() {
    return facetsScoring;
  }

  public SetStrategyRequest setFacetsScoring(Map facetsScoring) {
    this.facetsScoring = facetsScoring;
    return this;
  }

  private Map eventsScoring;
  private Map facetsScoring;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy