
com.plaid.client.PlaidPublicClient 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;
import com.plaid.client.http.HttpDelegate;
import com.plaid.client.request.MappingOptions;
import com.plaid.client.response.CategoriesResponse;
import com.plaid.client.response.Institution;
import com.plaid.client.response.InstitutionsResponse;
import com.plaid.client.response.LongTailInstitutionsResponse;
public interface PlaidPublicClient {
Object getEntity(String entityId);
Institution getInstitution(String institutionId);
InstitutionsResponse getAllInstitutions();
LongTailInstitutionsResponse getAllLongTailInstitutions(Integer offset, Integer count);
CategoriesResponse getAllCategories();
Object getCategory(String categoryId);
Object getCategoriesByMapping(String mapping, MappingOptions options);
HttpDelegate getHttpDelegate();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy