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

com.mercadopago.resources.preapproval.PreapprovalAutoRecurring Maven / Gradle / Ivy

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

import java.math.BigDecimal;
import java.time.OffsetDateTime;
import lombok.Getter;

/** Recurring data. */
@Getter
public class PreapprovalAutoRecurring {
  /** Currency ID. */
  private String currencyId;

  /** Recurring amount. */
  private BigDecimal transactionAmount;

  /** Recurring frequency. */
  private Integer frequency;

  /** Recurring frequency type (days or months). */
  private String frequencyType;

  /** Recurring start date. */
  private OffsetDateTime startDate;

  /** Recurring end date. */
  private OffsetDateTime endDate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy