LastName Property



 
The LastName property contains the last name of the owner of the card.


Syntax

    SiteKiosk.Plugins("SiteCash").Devices("CreditCard").LastName [=str]
    
Possible Values
    String that specifies or retrieves the last name.

    The property is read/write.
Remarks
    None.
Examples
    The following example shows the last name of the owner of the credit card in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
    ccardinfo = creditcard.CreateCardInfo();
    alert(ccardinfo.LastName);
    </SCRIPT>
    

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

Back to top