TransactionMode Property
The TransactionMode property specifies whether a manual, magnetic or EMV transaction is used.
Syntax
[int=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
CreateCardInfo().TransactionMode
|
Possible Values
Integer that specifies or retrieves the transaction mode.
|
The property is read/write.
Remarks
Manual = 0
Magnetic = 1
EMV = 2
Examples
The following example shows the transaction mode in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
ccardinfo = creditcard.CreateCardInfo();
alert(ccardinfo.TransactionMode);
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top