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