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

com.mercadopago.resources.paymentmethod.PaymentMethod Maven / Gradle / Ivy

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

import com.mercadopago.net.MPResource;
import java.math.BigDecimal;
import java.util.List;
import lombok.Getter;

/** Payment Method resource. */
@Getter
public class PaymentMethod extends MPResource {
  /** Payment method ID. */
  private String id;

  /** Payment method name. */
  private String name;

  /** Types of payment method. */
  private String paymentTypeId;

  /** Payment method status. */
  private String status;

  /** Logo to display in secure sites. */
  private String secureThumbnail;

  /** Logo to show. */
  private String thumbnail;

  /** Whether the capture can be delayed or not. */
  private String deferredCapture;

  /** Payment method settings. */
  private List settings;

  /** List of additional information that must be supplied by the payer. */
  private List additionalInfoNeeded;

  /** Minimum amount that can be processed with this payment method. */
  private BigDecimal minAllowedAmount;

  /** Maximum amount that can be processed with this payment method. */
  private BigDecimal maxAllowedAmount;

  /** How many time in minutes could happen until processing of the payment. */
  private Long accreditationTime;

  /** Financial institution processing this payment method. */
  private List financialInstitutions;

  /** Processing modes. */
  private List processingModes;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy