MinAmount Property



 
The MinAmount property contains the minimum amount to pay.


Syntax

    [cur=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").MinAmount
    
Possible Values
    Currency value that contains the minimum amount.

    The property is read only.
Remarks Examples
    The following example shows the minimum amount in an alert window.

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

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

Back to top