EPCard Type
The Zip pipeline component implements a PKZip-compatible Zip compressor and decompressor.
Remarks
When the adapter performs a transaction, this describes the customer's card information which is being authorized.
Fields
CardType CardTypes |
Type of credit card being used in this transaction. This field contains the customer's credit card type. This is automatically computed after the Number is set, but it can also be changed manually. A list of valid card types is included below.
| ||||||||||||||||||||||||||
CVVData String |
A three digit security code located on the back of many credit cards (optional). This alphanumeric field contains the three digit Visa "Card Verification Value" (CVV), MasterCard "Card Verification Code" (CVC), or four-digit American Express "Card Identification Number" (CID). This value appears as additional characters printed or embossed on the card signature line following the credit card account number on the back of the credit card. This is an optional field which can be used to determine if the customer is actually in possession of the credit card. Even if the CVVData is incorrect, the transaction may still be authorized. It is up to the merchant to examine the CVV result in the response and decide whether to honor the transaction or not. See the Gateway property to determine if this is an available field for the gateway you are using. | ||||||||||||||||||||||||||
CVVPresence CVVPresences |
This field is used to indicate the presence of CVVData. The adapter will automatically set this value to cvpProvided when a CVVData value is specified. You can explicitly specify the CVVPresence indicator by setting this property. Available values are:
| ||||||||||||||||||||||||||
ExpMonth Integer |
Expiration month of the credit card specified in Number. This field contains the expiration month of the customer's credit card. This field must be in the range 1 - 12.
| ||||||||||||||||||||||||||
ExpYear Integer |
Expiration year of the credit card specified in Number. This field contains the expiration year of the customer's credit card. This field may be a two digit representation of the expiration year, in the range 0 - 99 or a four-digit year, in the range 2000 to 2099.
| ||||||||||||||||||||||||||
Number String |
Customer's credit card number for this transaction. This field contains the customer's credit card number. When this field is set, white space and dashes are stripped out, and the CardType field is automatically computed.
|
Constructors
Constructors are only relevant when configuring adapters in orchestrations.
public EPCard();
public EPCard(string cardNumber, int expMonth, int expYear);
public EPCard(string cardNumber, int expMonth, int expYear, string CVVData);