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

com.algolia.search.models.mcm.UserId Maven / Gradle / Ivy

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

import java.io.Serializable;

public class UserId implements Serializable {
  public String getUserID() {
    return userID;
  }

  public UserId setUserID(String userID) {
    this.userID = userID;
    return this;
  }

  public String getClusterName() {
    return clusterName;
  }

  public UserId setClusterName(String clusterName) {
    this.clusterName = clusterName;
    return this;
  }

  public Integer getNbRecords() {
    return nbRecords;
  }

  public UserId setNbRecords(Integer nbRecords) {
    this.nbRecords = nbRecords;
    return this;
  }

  public Integer getDataSize() {
    return dataSize;
  }

  public UserId setDataSize(Integer dataSize) {
    this.dataSize = dataSize;
    return this;
  }

  private String userID;
  private String clusterName;
  private Integer nbRecords;
  private Integer dataSize;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy