CardType Property
The card type for which a Level 3 addendum will be created.
Syntax
tsyshclevel3.getCardType([callback]) tsyshclevel3.setCardType( cardType, [callback])
Possible Values
0 (hctVisa), 1 (hctMasterCard), 2 (hctAmericanExpress)
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
The value of this property MUST correspond to the card used in the original authorization request (that is referenced by RetrievalNumber).
Valid values for this property include:
hctVisa (0) | Performs a Level 3 adjustment transaction for a Visa card. |
hctMasterCard (1) | Performs a Level 3 adjustment transaction for a MasterCard. |
hctAmericanExpress (2) | Performs a Level 3 adjustment transaction for an American Express card. |
Data Type
Integer