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

com.algolia.search.models.analytics.ABTests Maven / Gradle / Ivy

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

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

@JsonInclude(JsonInclude.Include.NON_NULL)
public class ABTests implements Serializable {
  private ArrayList abtests;
  private int count;
  private int total;

  public ArrayList getAbtests() {
    return abtests;
  }

  public int getCount() {
    return count;
  }

  public int getTotal() {
    return total;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy