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

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

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

import com.mercadopago.resources.common.Identification;
import lombok.Getter;

/** PaymentPayer class. */
@Getter
public class PaymentPayer {
  /** Payer's identification type (mandatory if the payer is a Customer). */
  private String type;

  /** Payer's ID. */
  private String id;

  /** Email of the payer. */
  private String email;

  /** Payer's personal identification. */
  private Identification identification;

  /** Payer's first name. */
  private String firstName;

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

  /** Payer's entity type (only for bank transfers). */
  private String entityType;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy