QuickPayPaymentWindow.version
Version: - stringSummary
Returns code of the current version of the payment provider's API.
Settings
The value is generated automatically.
Examples
Outputting the template tag
@GetString("QuickPayPaymentWindow.version")
Check if tag has a value
@if(!string.IsNullOrWhiteSpace(GetString("QuickPayPaymentWindow.version"))) {
@* Tag has value, so let's do something useful here. *@
}
Assign tag to a value for later use
@{
string storedTag = GetString("QuickPayPaymentWindow.version");
}
Outputting the template tag
<!--@QuickPayPaymentWindow.version-->
Check if string has a value
<!--@If Defined(@QuickPayPaymentWindow.version)-->
Let's output this tag here: <strong><!--@QuickPayPaymentWindow.version--></strong>
<!--@EndIf(@QuickPayPaymentWindow.version)-->