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

com.mercadopago.resources.datastructures.paymentmethod.FinancialInstitutions Maven / Gradle / Ivy

package com.mercadopago.resources.datastructures.paymentmethod;

public class FinancialInstitutions {

  private final String id;
  private final String description;

  public FinancialInstitutions(String id, String description) {
    this.id = id;
    this.description = description;
  }

  public String getId() {
    return id;
  }

  public String getDescription() {
    return description;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy