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

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

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

import lombok.Builder;
import lombok.Getter;

/** Payment intent additional info. */
@Getter
@Builder
public class PointPaymentIntentAdditionalInfoRequest {
  /**
   * An alphanumeric value can be an identifier in your application. It will be returned in the
   * Webhook notification.
   */
  private final String externalReference;

  /** A boolean value that determines if you want to print the ticket on the device. */
  private final Boolean printOnTerminal;

  /**
   * An alphanumeric value to identify the invoice or ticket number. It will be printed on the
   * device ticket.
   */
  private final String ticketNumber;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy