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

com.mercadopago.resources.point.PointPaymentIntent Maven / Gradle / Ivy

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

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

/** Point Payment Intent resource. */
@Getter
public class PointPaymentIntent extends MPResource {
  /** Payment intent identifier. */
  private String id;

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

  /** Identifier of the device that have a payment intent queued. */
  private String deviceId;

  /** Payment intent amount. */
  private BigDecimal amount;

  /** Payment intent additional info. */
  private PointPaymentIntentAdditionalInfo additionalInfo;

  /** Properties of the payment intent. */
  private PointPaymentIntentPayment payment;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy