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

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

The newest version!
package com.algolia.search.models.indexing;

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

public class ListIndicesResponse implements Serializable {

  public List getIndices() {
    return items;
  }

  public ListIndicesResponse setItems(List items) {
    this.items = items;
    return this;
  }

  private List items;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy