Class CardFromRequest
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.CardFromRequest
-
- All Implemented Interfaces:
Serializable
public class CardFromRequest extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CardFromRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExpiry()The card expiration year and month, in Internet date format.StringgetLastDigits()The last digits of the payment card.voidsetExpiry(String expiry)The card expiration year and month, in Internet date format.voidsetLastDigits(String lastDigits)The last digits of the payment card.
-
-
-
Method Detail
-
setExpiry
public void setExpiry(String expiry)
The card expiration year and month, in Internet date format.
-
setLastDigits
public void setLastDigits(String lastDigits)
The last digits of the payment card.
-
getExpiry
public String getExpiry()
The card expiration year and month, in Internet date format.
-
getLastDigits
public String getLastDigits()
The last digits of the payment card.
-
-