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

com.algolia.search.models.indexing.BatchResponse Maven / Gradle / Ivy

package com.algolia.search.models.indexing;

import java.io.Serializable;
import java.util.List;

public class BatchResponse extends IndexingResponse implements Serializable {

  public List getObjectIDs() {
    return objectIDs;
  }

  public BatchResponse setObjectIDs(List objectIDs) {
    this.objectIDs = objectIDs;
    return this;
  }

  private List objectIDs;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy