You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Electronic Commerce Indicator. The ECI indicates the security level at which the payment information is processed between the cardholder and merchant.
9
+
* A default ECI value can be set in the Technical Information page. An ECI value sent along in the transaction, will overwrite the default ECI value.
10
+
* It is the merchant's responsibility to give correct ECI values for the transactions. For e-Commerce, our system sets ECI value 5, 6 or 7 depending on the 3-D Secure authentication result.
11
+
*/
12
+
class Eci
13
+
{
14
+
/** The merchant took the customer's credit card and swiped it through a machine that read the magnetic strip data of the card. */
15
+
constSWIPED = 0;
16
+
17
+
/** The merchant received the customer's financial details over the phone or via fax/mail, but does not have the customer's card at hand. */
18
+
constMANUALLY_KEYED = 1;
19
+
20
+
/** The customer's first transaction was a Mail Order / Telephone Order transaction, i.e. the customer gave his financial details over the phone or via mail/fax to the merchant. The merchant either stored the details himself or had these details stored in our system using an Alias and is performing another transaction for the same customer (recurring transaction). */
21
+
constRECURRENT_MOTO = 2;
22
+
23
+
/** Partial payment of goods/services that have already been delivered, but will be paid for in several spread payments. */
24
+
constINSTALLMENT_PAYMENTS = 3;
25
+
26
+
/** The customer is physically present in front of the merchant. The merchant has the customer's card at hand. The card details are manually entered, the card is not swiped through a machine. */
27
+
constMANUALLY_KEYED_CARD_PRESENT = 4;
28
+
29
+
/** The cardholder's 3-D Secure identification was successful, i.e. there was a full authentication. (Full thumbs up) */
30
+
constCARDHOLDER_IDENTIFICATION_SUCCESSFUL = 5;
31
+
32
+
/** Merchant supports identification but not cardholder, The merchant has a 3-D Secure contract, but the cardholder's card is not 3-D Secure or is 3-D Secure but the cardholder is not yet in possession of the PIN (Half thumbs up). Conditional payment guarantee rules apply. */
33
+
constMERCHANT_IDENTIFICATION_3DSECURE = 6;
34
+
35
+
/** The merchant received the customer's financial details via a secure (SSL encrypted) website (either the merchant's website or our secure platform). */
36
+
constECOMMERCE_WITH_SSL = 7;
37
+
38
+
/** The customer's first transaction was an e-Commerce transaction, i.e. the customer entered his financial details himself on a secure website (either the merchant's website or our secure platform). The merchant either stored the details himself or had these details stored in our system using an Alias and is now performing another transaction for the same customer (recurring transaction), using the Alias details. */
0 commit comments