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

com.clickntap.api.Auth Maven / Gradle / Ivy

package com.clickntap.api;

import java.util.List;

import org.json.JSONObject;

public class Auth {
  private BO token;
  private List users;
  private JSONObject info;

  public BO getToken() {
    return token;
  }

  public void setToken(BO token) {
    this.token = token;
  }

  public JSONObject getInfo() {
    return info;
  }

  public void setInfo(JSONObject info) {
    this.info = info;
  }

  public List getUsers() {
    return users;
  }

  public void setUsers(List users) {
    this.users = users;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy