All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.plaid.client.PlaidPublicClient Maven / Gradle / Ivy

There is a newer version: 30.1.0
Show newest version
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