com.plaid.client.response.AccountsBalanceGetResponse 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;
/**
* Response for /accounts/balance/get api call.
*/
public final class AccountsBalanceGetResponse extends BaseResponse {
private ItemStatus item;
private List accounts;
public ItemStatus getItem() {
return item;
}
public List getAccounts() {
if (accounts == null) {
return null;
}
return accounts;
}
}