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

com.algolia.search.models.insights.InsightsRequest Maven / Gradle / Ivy

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

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

@JsonInclude(JsonInclude.Include.NON_NULL)
public class InsightsRequest implements Serializable {
  public List getEvents() {
    return events;
  }

  public InsightsRequest setEvents(List events) {
    this.events = events;
    return this;
  }

  private List events;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy