com.plaid.client.response.AuthGetResponse 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.response;
import java.util.List;
public final class AuthGetResponse extends BaseResponse {
private ItemStatus item;
private List accounts;
private Numbers numbers;
public ItemStatus getItem() {
return item;
}
public List getAccounts() {
return accounts;
}
public Numbers getNumbers() {
return numbers;
}
public static class NumberACH {
private String accountId;
private String account;
private String routing;
private String wireRouting;
public String getAccountId() {
return accountId;
}
public String getAccount() {
return account;
}
public String getRouting() {
return routing;
}
public String getWireRouting() {
return wireRouting;
}
}
public static class NumberEFT {
private String accountId;
private String account;
private String institution;
private String branch;
public String getAccountId() {
return accountId;
}
public String getAccount() {
return account;
}
public String getInstitution() {
return institution;
}
public String getBranch() {
return branch;
}
}
public static final class Numbers {
private List ach;
private List eft;
public List getACH() {
return ach;
}
public List getEFT() {
return eft;
}
}
}