com.plaid.client.response.InstitutionsGetByIdResponse 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;
/**
* Response to /institutions/get_by_id request.
*
* @see https://plaid.com/docs/api
*/
public final class InstitutionsGetByIdResponse extends BaseResponse {
private Institution institution;
public Institution getInstitution() {
return institution;
}
}