com.withabound.models.users.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of withabound-java Show documentation
Show all versions of withabound-java Show documentation
The Abound Java SDK provides convenient access to the Abound API from applications written in Java.
The newest version!
package com.withabound.models.users;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
/** Response body returned from the Abound Users APIs */
public class User extends UserRequest {
private String userId;
public User(
final String email,
final String foreignId,
final JsonObject metadata,
final JsonElement notes,
final UserProfile profile,
final UserBusiness business) {
super(email, foreignId, metadata, notes, profile, business);
}
public String getUserId() {
return userId;
}
}