Class PaymentCard
- java.lang.Object
-
- com.mercadopago.resources.payment.PaymentCard
-
public class PaymentCard extends Object
PaymentCard class.
-
-
Constructor Summary
Constructors Constructor Description PaymentCard()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PaymentCardholdergetCardholder()Card's owner data.OffsetDateTimegetDateCreated()Creation date of card.OffsetDateTimegetDateLastUpdated()Last update of data from the card.intgetExpirationMonth()Card expiration month.intgetExpirationYear()Card expiration year.StringgetFirstSixDigits()First six digit of card number.StringgetId()Id of the card.StringgetLastFourDigits()Last four digits of card number.
-
-
-
Method Detail
-
getId
public String getId()
Id of the card.
-
getLastFourDigits
public String getLastFourDigits()
Last four digits of card number.
-
getFirstSixDigits
public String getFirstSixDigits()
First six digit of card number.
-
getExpirationYear
public int getExpirationYear()
Card expiration year.
-
getExpirationMonth
public int getExpirationMonth()
Card expiration month.
-
getDateCreated
public OffsetDateTime getDateCreated()
Creation date of card.
-
getDateLastUpdated
public OffsetDateTime getDateLastUpdated()
Last update of data from the card.
-
getCardholder
public PaymentCardholder getCardholder()
Card's owner data.
-
-