QuickPayPaymentWindow.branding_id

Version: - string  

Summary

Returns ID of branding the customer.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetString("QuickPayPaymentWindow.branding_id")

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@QuickPayPaymentWindow.branding_id-->

Check if string has a value

<!--@If Defined(@QuickPayPaymentWindow.branding_id)--> Let's output this tag here: <strong><!--@QuickPayPaymentWindow.branding_id--></strong> <!--@EndIf(@QuickPayPaymentWindow.branding_id)-->