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 String
getExpiry()
The card expiration year and month, in Internet date format.String
getLastDigits()
The last digits of the payment card.void
setExpiry(String expiry)
The card expiration year and month, in Internet date format.void
setLastDigits(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.
-
-