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

com.mercadopago.client.payment.PaymentAdditionalInfoPayerRequest Maven / Gradle / Ivy

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

import com.mercadopago.client.common.AddressRequest;
import com.mercadopago.client.common.PhoneRequest;
import java.time.OffsetDateTime;
import lombok.Builder;
import lombok.Getter;

/** PaymentAdditionalInfoPayerRequest class. */
@Getter
@Builder
public class PaymentAdditionalInfoPayerRequest {
  /** Payer first name. */
  private final String firstName;

  /** Payer last name. */
  private final String lastName;

  /** Payer phone. */
  private final PhoneRequest phone;

  /** Payer address. */
  private final AddressRequest address;

  /** Payer registration date. */
  private final OffsetDateTime registrationDate;

  /** Payer authentication type. */
  private final String authenticationType;

  /** If payer is prime user. */
  private final boolean isPrimeUser;

  /** If is first online purchase. */
  private final boolean isFirstPurchaseOnline;

  /** Date of last purchase. */
  private final OffsetDateTime lastPurchase;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy