Package com.mercadopago.client.payment
Class PaymentPayerRequest
- java.lang.Object
-
- com.mercadopago.client.payment.PaymentPayerRequest
-
public class PaymentPayerRequest extends Object
PaymentPayerRequest class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PaymentPayerRequest.PaymentPayerRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PaymentPayerRequest.PaymentPayerRequestBuilder
builder()
String
getEmail()
Email of the payer.String
getEntityType()
Payer's entity type (only for bank transfers).String
getFirstName()
Payer's first name.String
getId()
Payer's ID.IdentificationRequest
getIdentification()
Payer's personal identification.String
getLastName()
Payer's last name.String
getType()
Payer's identification type (mandatory if the payer is a Customer).
-
-
-
Method Detail
-
builder
public static PaymentPayerRequest.PaymentPayerRequestBuilder builder()
-
getType
public String getType()
Payer's identification type (mandatory if the payer is a Customer).
-
getId
public String getId()
Payer's ID.
-
getEmail
public String getEmail()
Email of the payer.
-
getIdentification
public IdentificationRequest getIdentification()
Payer's personal identification.
-
getFirstName
public String getFirstName()
Payer's first name.
-
getLastName
public String getLastName()
Payer's last name.
-
getEntityType
public String getEntityType()
Payer's entity type (only for bank transfers).
-
-