AccountCreated Property
The AccountCreated property contains the creation date of the account.
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
AccountCreated
|
Possible Values
Long value that retrieves the creation date.
|
The property is read only.
Remarks
Dates contain the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time (UTC).
Examples
The following example displays the creation date of the account.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.AccountCreated);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top