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

com.mercadopago.client.preference.PreferencePaymentMethodsRequest Maven / Gradle / Ivy

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

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy