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 PaymentCardholder
getCardholder()
Card's owner data.OffsetDateTime
getDateCreated()
Creation date of card.OffsetDateTime
getDateLastUpdated()
Last update of data from the card.int
getExpirationMonth()
Card expiration month.int
getExpirationYear()
Card expiration year.String
getFirstSixDigits()
First six digit of card number.String
getId()
Id of the card.String
getLastFourDigits()
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.
-
-