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

com.mercadopago.client.point.PointPaymentIntentRequest Maven / Gradle / Ivy

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

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

/** Parameters to create a Point Payment Intent request. */
@Getter
@Builder
public class PointPaymentIntentRequest {
  /** A positive value representing how much to charge. */
  private final BigDecimal amount;

  /** Payment intent description. */
  private final String description;

  /** Properties of the payment intent. */
  private final PointPaymentIntentPaymentRequest payment;

  /** Payment intent additional info. */
  private final PointPaymentIntentAdditionalInfoRequest additionalInfo;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy