Paid Property
The Paid property indicates whether payment occured.
Syntax
Possible Values
Boolean value that specifies or retrieves the paid status.
|
The property is read/write.
Remarks
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