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

com.mercadopago.resources.payment.PaymentAdditionalInfoPayer Maven / Gradle / Ivy

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

import com.mercadopago.resources.common.Address;
import java.time.OffsetDateTime;
import lombok.Getter;

/** PaymentAdditionalInfoPayer class. */
@Getter
public class PaymentAdditionalInfoPayer {
  /** Payer's name. */
  private String firstName;

  /** Payer's last name. */
  private String lastName;

  /** Payer's phone. */
  private PaymentPhone phone;

  /** Payer's address. */
  private Address address;

  /** Date of registration of the payer on your site. */
  private OffsetDateTime registrationDate;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy