CustomerDateOfBirth Property



 
The CustomerDateOfBirth property contains the date of birth of the user.


Syntax

    [dt=] SiteKiosk.Plugins("SiteCash").SessionSettings.CustomerDateOfBirth
Possible Values
    Date value that retrieves the date of birth.

    The property is read only.
Remarks
    Use the DateTimeFormatter object to format the date.

    Session settings are only provided by some payment devices like smartcards.
Examples
    The following example shows the date of birth of the user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").SessionSettings.CustomerDateOfBirth);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top