com.algolia.search.models.rules.ConsequencePromote Maven / Gradle / Ivy
The newest version!
package com.algolia.search.models.rules;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.io.Serializable;
import java.util.List;
/**
* Consequence parameter. More information:
*
* @see Algolia.com
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ConsequencePromote implements Serializable {
private String objectID;
private Integer position;
private List objectIDs;
public ConsequencePromote() {}
public String getObjectID() {
return objectID;
}
public ConsequencePromote setObjectID(String objectID) {
this.objectID = objectID;
return this;
}
public Integer getPosition() {
return position;
}
public ConsequencePromote setPosition(Integer position) {
this.position = position;
return this;
}
public List getObjectIDs() {
return objectIDs;
}
public ConsequencePromote setObjectIDs(List objectIDs) {
this.objectIDs = objectIDs;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy