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

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

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

import java.io.Serializable;

public class AddABTestResponse implements Serializable {
  public long getAbTestID() {
    return abTestID;
  }

  public AddABTestResponse setAbTestID(long abTestID) {
    this.abTestID = abTestID;
    return this;
  }

  public long getTaskID() {
    return taskID;
  }

  public AddABTestResponse setTaskID(long taskID) {
    this.taskID = taskID;
    return this;
  }

  public String getIndex() {
    return index;
  }

  public AddABTestResponse setIndex(String index) {
    this.index = index;
    return this;
  }

  private long abTestID;
  private long taskID;
  private String index;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy