MerchantEmailAddress Property
The MerchantEmailAddress property contains the Email address of the merchant.
Syntax
[str=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
MerchantEmailAddress
|
Possible Values
String that contains the address.
|
The property is read only.
Remarks
Examples
The following example shows the Email address of the merchant in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
alert(creditcard.MerchantEmailAddress);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top