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

com.plaid.client.response.CategoriesGetResponse Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy