com.plaid.client.response.CategoriesGetResponse 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 /categories/get endpoint.
*/
public final class CategoriesGetResponse extends BaseResponse {
private List categories;
public List getCategories() {
return categories;
}
public static class Category {
private String group;
private List hierarchy;
private String categoryId;
public String getGroup() {
return group;
}
public List getHierarchy() {
return hierarchy;
}
public String getCategoryId() {
return categoryId;
}
}
}