DebitTrial Method
The DebitTrial method tries to debit.
Syntax
SiteKiosk.Plugins("SiteCash").Devices2.Item(index).DebitTrial(amount)
|
Parameters
amount |
Currency value that specifies the amount. |
Return Value
Remarks
Examples
The following example tries to debit an amount from the first existing device.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Plugins("SiteCash").Devices2.Item(1).DebitTrial(1.5);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top