E-Payment Integrator 2020 C++ Edition

Questions / Feedback?

CardType Property

Type of credit card being used in this transaction.

Syntax

ANSI (Cross Platform)
int GetCardType();
int SetCardType(int iCardType); Unicode (Windows) INT GetCardType();
INT SetCardType(INT iCardType);

Possible Values

CT_UNKNOWN(0), 
CT_VISA(1),
CT_MASTER_CARD(2),
CT_AMEX(3),
CT_DISCOVER(4),
CT_DINERS(5),
CT_JCB(6),
CT_VISA_ELECTRON(7),
CT_MAESTRO(8),
CT_LASER(10)
@property (nonatomic,readwrite,assign,getter=cardType,setter=setCardType:) int cardType;
- (int)cardType;
- (void)setCardType:(int)newCardType;

Possible Values

CT_UNKNOWN(0), 
CT_VISA(1),
CT_MASTER_CARD(2),
CT_AMEX(3),
CT_DISCOVER(4),
CT_DINERS(5),
CT_JCB(6),
CT_VISA_ELECTRON(7),
CT_MAESTRO(8),
CT_LASER(10)
#define PID_ICHARGE_CARDTYPE 3

INPAY_EXTERNAL void* INPAY_CALL InPay_ICharge_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INPAY_EXTERNAL int INPAY_CALL InPay_ICharge_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

Type of credit card being used in this transaction. This property contains the customer's credit card type. This is automatically computed after the CardNumber is set, but it can also be changed manually. A list of valid card types is included below.

ctUnknown (0) Invalid or unknown prefix, card type not known.
ctVisa (1) Visa or Delta Card.
ctMasterCard (2) MasterCard.
ctAMEX (3) American Express Card.
ctDiscover (4) Discover Card.
ctDiners (5) Diners Club or Carte Blanche Card.
ctJCB (6) JCB Card.
ctVisaElectron (7) Visa Electron Card (runs as a Visa for most gateways)
ctMaestro (8) Maestro Card
ctLaser (10) Laser Card (Ireland)

This property is not available at design time.

Data Type

Integer

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 C++ Edition - Version 20.0 [Build 7941]