Class PreferencePayer
- java.lang.Object
-
- com.mercadopago.resources.preference.PreferencePayer
-
public class PreferencePayer extends Object
Payer information from preference.
-
-
Constructor Summary
Constructors Constructor Description PreferencePayer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Address
getAddress()
Payer's address.OffsetDateTime
getDateCreated()
Date of creation of the payer user.String
getEmail()
Payer's email.Identification
getIdentification()
Payer's identification.OffsetDateTime
getLastPurchase()
Date of the last purchase.String
getName()
Payer's name.Phone
getPhone()
Payer's phone.String
getSurname()
Payer's surname.
-
-
-
Method Detail
-
getName
public String getName()
Payer's name.
-
getSurname
public String getSurname()
Payer's surname.
-
getEmail
public String getEmail()
Payer's email.
-
getPhone
public Phone getPhone()
Payer's phone.
-
getIdentification
public Identification getIdentification()
Payer's identification.
-
getAddress
public Address getAddress()
Payer's address.
-
getDateCreated
public OffsetDateTime getDateCreated()
Date of creation of the payer user.
-
getLastPurchase
public OffsetDateTime getLastPurchase()
Date of the last purchase.
-
-