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

com.mercadopago.client.payment.PaymentDiscountRequest Maven / Gradle / Ivy

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

import java.math.BigDecimal;
import java.time.LocalDate;
import lombok.Builder;
import lombok.Getter;

/** PaymentDiscountRequest class. */
@Getter
@Builder
public class PaymentDiscountRequest {

  /** Discount type. */
  private String type;

  /** Discount value. */
  private BigDecimal value;

  /** Discount Limit Date. */
  private LocalDate limitDate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy