com.mercadopago.client.point.PointPaymentIntentAdditionalInfoRequest Maven / Gradle / Ivy
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;
}