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

com.withabound.models.users.User Maven / Gradle / Ivy

Go to download

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy