LastCashNotify Property



 
The LastCashNotify property contains the cash amount of the device before the last reset.


Syntax

    [double=] AccumulatedMoneyItem.LastCashNotify
    
Possible Values
    Double value that retrieves the cash amount.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the cash amount of the first available device before the last reset.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
    var FirstDevice = SiteKiosk.Plugins("SiteCash").Devices2.Item(1).Name;
    alert(AMStorage.DeviceRuntimeCounters(FirstDevice).LastCashNotify);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.5 (and later versions).

Back to top