LastTransactionsNotify Property



 
The LastTransactionsNotify property contains the number of transactions of the device before the last reset.


Syntax

    [long=] AccumulatedMoneyItem.LastTransactionsNotify
    
Possible Values
    Long value that retrieves the number of transactions.

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

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

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

Back to top