/n software 3-D Secure V2 Node.js Edition

Questions / Feedback?

CardType Property

Indicates the results of the Luhn Digit Check algorithm.

Syntax

 cardvalidator.getCardType([callback])

Possible Values

  0 (vctUnknown), 
  1 (vctVisa), 
  2 (vctMasterCard), 
  3 (vctAmex), 
  4 (vctDiscover), 
  5 (vctDiners), 
  6 (vctJCB), 
  7 (vctVisaElectron), 
  8 (vctMaestro), 
  9 (vctCUP), 
  10 (vctLaser)

Default Value

0

Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for the getCardType([callback]) method is defined as:

function(err, data){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'data' is the value returned by the method.

The callback for the setCardType([callback]) method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

This property is filled after a call to the ValidateCard method. Allowable values include:

ctUnknown (0) The class could not determine the type of the card based on the CardNumber prefix and length.
vctVisa (1) Visa card.
vctMasterCard (2) MasterCard card.
vctAmex (3) American Express card.
vctDiscover (4) Discover Card
vctDiners (5) Diner's Club card (Carte Blanche or International - the CardTypeDescription will contain the full name).
vctJCB (6) Japan Credit Bureau card.
vctVisaElectron (7) International Visa debit card (not available in US or Canada).
vctMaestro (8) International debit card (owned and operated by MasterCard).
vctCUP (9) China UnionPay - China's only credit card organization.
vctLaser (10) Primary debit card used in Ireland.

This property is read-only and not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
/n software 3-D Secure V2 Node.js Edition - Version 2.2 [Build 8318]