com.plaid.client.request.Credentials Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
package com.plaid.client.request;
public class Credentials {
private String username;
private String password;
private String pin;
public Credentials(String username, String password) {
// the json serializer will not include the pin when it is null
this(username, password, null);
}
public Credentials(String username, String password, String pin) {
this.username = username;
this.password = password;
this.pin = pin;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPin() {
return pin;
}
public void setPin(String pin) {
this.pin = pin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy