ChargeLogic
Tags, loops and template examples related to handling payment in ChargeLogic checkout.
Available tags
ChargeLogic.HostedPaymentID
Returns ID of hosted payment.
RAZOR
@GetString("ChargeLogic.HostedPaymentID")
ChargeLogic.HostedPaymentURL
Returns URL of hosted payment.
RAZOR
@GetString("ChargeLogic.HostedPaymentURL")
ChargeLogic.LastCardTokenID
Returns last card token ID used with the payment.
RAZOR
@GetString("ChargeLogic.LastCardTokenID")
ChargeLogic.Message
Returns message text from the payment provider.
RAZOR
@GetString("ChargeLogic.Message")
Available loops
CardTokens
The CardToken
loop defines metadata about saved tokens related to all card already used successfully.
RAZOR
@foreach (LoopItem item in GetLoop("CardTokens")){ <p>@item.GetValue("TagName")</p> }