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

com.mercadopago.resources.preference.PreferencePaymentMethods Maven / Gradle / Ivy

There is a newer version: 2.1.29
Show newest version
package com.mercadopago.resources.preference;

import java.util.List;
import lombok.Getter;

/** Payment methods information from preference. */
@Getter
public class PreferencePaymentMethods {
  /** Payment methods not allowed in payment process (except account_money). */
  private List excludedPaymentMethods;

  /** Payment types not allowed in payment process. */
  private List excludedPaymentTypes;

  /** Payment method to be preferred on the payments methods list. */
  private String defaultPaymentMethodId;

  /** Maximum number of credit card installments to be accepted. */
  private Integer installments;

  /** Preferred number of credit card installments. */
  private Integer defaultInstallments;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy