public class

ManuallyEnteredCard

extends Card
java.lang.Object
   ↳ PayPalRetailObject
     ↳ com.paypal.paypalretailsdk.Card
       ↳ com.paypal.paypalretailsdk.ManuallyEnteredCard

Class Overview

Certain regions support manual entry of credit card numbers. The retail SDK requires that you use an EMV certified terminal to gather an encrypted PAN and when doing so, an object of type ManuallyEnteredCard would be returned, which can be presented to the backend services to collect payment

Summary

Public Constructors
ManuallyEnteredCard()
Create a new instance of Manually Entered card for key-in payments
Public Methods
String getCVV()
The CVV on the card for payment.
String getCardNumber()
cardNumber Number of the provided card
String getExpiration()
Get the card expiration date in MMYYYY format
String getPostalCode()
Primary account holder's billing postal code
void setCVV(String value)
The CVV on the card for payment.
void setCardNumber(String value)
cardNumber Number of the provided card
void setExpiration(String date)
Set the card expiration date in (MMYYYY) format.
void setPostalCode(String value)
Primary account holder's billing postal code
String toString()
Returns a string representing the serialized state of the ManuallyEnteredCard object
[Expand]
Inherited Methods
From class com.paypal.paypalretailsdk.Card
From class java.lang.Object

Public Constructors

public ManuallyEnteredCard ()

Create a new instance of Manually Entered card for key-in payments

Public Methods

public String getCVV ()

The CVV on the card for payment. E.g. 131

public String getCardNumber ()

cardNumber Number of the provided card

public String getExpiration ()

Get the card expiration date in MMYYYY format

public String getPostalCode ()

Primary account holder's billing postal code

public void setCVV (String value)

The CVV on the card for payment. E.g. 131

public void setCardNumber (String value)

cardNumber Number of the provided card

public void setExpiration (String date)

Set the card expiration date in (MMYYYY) format. E.g. 092019 for Sep, 2019

public void setPostalCode (String value)

Primary account holder's billing postal code

public String toString ()

Returns a string representing the serialized state of the ManuallyEnteredCard object