CheckChange2 Method
The CheckChange2 method checks if the connected payment devices can pay out the amount.
Syntax
SiteKiosk.Plugins("SiteCash").CheckChange2(amount)
|
Parameters
amount |
Currency value that specifies the amount. |
Return Value
Remarks
Deployed SmartCards can be recharged with the remaining credit.
Use the CurrencyFormatter object for currency functionality.
Examples
The following example checks if remaining credit can be returned.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Plugins("SiteCash").CheckChange2(10);
</SCRIPT>
|
Applies to
SiteKiosk v6.5 (and later versions).
Back to top