Paid Property



 
The Paid property indicates whether payment occured.


Syntax

    Account.Paid [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the paid status.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines whether payment occured for the first available account and displays it.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    account = SiteCafe.Server.Accounts.GetAccountByIndex(1);
    alert(account.Paid);
    </SCRIPT>
    

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

Back to top