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

io.callstats.sdk.data.UserInfo Maven / Gradle / Ivy

package io.callstats.sdk.data;

public class UserInfo {
	
	private String confID;
	private String userID;
	private String  ucID;
	
	
	public String getConfID() {
		return confID;
	}
	public void setConfID(String confID) {
		this.confID = confID;
	}
	public String getUserID() {
		return userID;
	}
	public void setUserID(String userID) {
		this.userID = userID;
	}
	public String getUcID() {
		return ucID;
	}
	public void setUcID(String ucID) {
		this.ucID = ucID;
	}
	
	public UserInfo(String confID, String userID, String ucID) {
		super();
		this.confID = confID;
		this.userID = userID;
		this.ucID = ucID;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy