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

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

There is a newer version: 27.0.0
Show newest version
package com.plaid.client.response;

import com.plaid.client.request.common.Product;

import java.util.List;

public final class Institution {
  public static final class Credential {
    private String label;
    private String name;
    private String type;

    public String getLabel() {
      return label;
    }

    public String getName() {
      return name;
    }

    public String getType() {
      return type;
    }
  }

  private List credentials;
  private boolean hasMfa;
  private String institutionId;
  private List mfa;
  private String name;
  private List products;

  public List getCredentials() {
    return credentials;
  }

  public boolean hasMfa() {
    return hasMfa;
  }

  public String getInstitutionId() {
    return institutionId;
  }

  public List getMfa() {
    return mfa;
  }

  public String getName() {
    return name;
  }

  public List getProducts() {
    return products;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy