QuickPayPaymentWindow.autofee

Version: - string  

Summary

Returns current state of the setting. If set to 1, the fee charged by the acquirer will be calculated and added to the transaction amount.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("QuickPayPaymentWindow.autofee")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.autofee"))) {
@* Tag has value, so let's do something useful here. *@
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Assign tag to a value for later use

@{
string storedTag = GetString("QuickPayPaymentWindow.autofee");
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Outputting the template tag

<!--@QuickPayPaymentWindow.autofee-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@QuickPayPaymentWindow.autofee)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX