Merchant Property



 
The Merchant property contains the name of the merchant.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").Merchant
    
Possible Values
    String that contains the name.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the name of the merchant in an alert window.

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

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

Back to top