com.plaid.client.response.InstitutionsGetResponse 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 to /institutions/get request.
*
* @see https://plaid.com/docs/api
*/
public final class InstitutionsGetResponse extends BaseResponse {
private List institutions;
private Integer total;
public List getInstitutions() {
return institutions;
}
public Integer getTotal() {
return total;
}
}