namespace Nop.Services.Messages; /// /// Represents token group names /// public static partial class TokenGroupNames { /// /// Represents tokens with information about the store /// public static string StoreTokens => "Store tokens"; /// /// Represents tokens with information about the customer /// public static string CustomerTokens => "Customer tokens"; /// /// Represents tokens with information about the order /// public static string OrderTokens => "Order tokens"; /// /// Represents tokens with information about the shipment /// public static string ShipmentTokens => "Shipment tokens"; /// /// Represents tokens with information about the refunded order /// public static string RefundedOrderTokens => "Refunded order tokens"; /// /// Represents tokens with information about the order note /// public static string OrderNoteTokens => "Order note tokens"; /// /// Represents tokens with information about the recurring payment /// public static string RecurringPaymentTokens => "Recurring payment tokens"; /// /// Represents tokens with information about the newsletter subscription /// public static string SubscriptionTokens => "Newsletter subscription tokens"; /// /// Represents tokens with information about the product /// public static string ProductTokens => "Product tokens"; /// /// Represents tokens with information about the return request /// public static string ReturnRequestTokens => "Return request tokens"; /// /// Represents tokens with information about the forum /// public static string ForumTokens => "Forum tokens"; /// /// Represents tokens with information about the forum topic /// public static string ForumTopicTokens => "Forum topic tokens"; /// /// Represents tokens with information about the forum post /// public static string ForumPostTokens => "Forum post tokens"; /// /// Represents tokens with information about the private message /// public static string PrivateMessageTokens => "Private message tokens"; /// /// Represents tokens with information about the vendor /// public static string VendorTokens => "Vendor tokens"; /// /// Represents tokens with information about the gift card /// public static string GiftCardTokens => "Gift card tokens"; /// /// Represents tokens with information about the product review /// public static string ProductReviewTokens => "Product review tokens"; /// /// Represents tokens with information about the attribute combination /// public static string AttributeCombinationTokens => "Attribute combination tokens"; /// /// Represents tokens with information about the blog comment /// public static string BlogCommentTokens => "Blog comment tokens"; /// /// Represents tokens with information about the news comment /// public static string NewsCommentTokens => "News comment tokens"; /// /// Represents tokens with information that product is in stock /// public static string ProductBackInStockTokens => "Back in stock tokens"; /// /// Represents tokens with information about the sending email to friend /// public static string EmailAFriendTokens => "Email a friend tokens"; /// /// Represents tokens with information about the sending wishlist to a friend /// public static string WishlistToFriendTokens => "Wishlist to friend tokens"; /// /// Represents tokens with information about validation of the VAT request /// public static string VatValidation => "VAT validation tokens"; /// /// Represents tokens with information about contact us /// public static string ContactUs => "Contact us tokens"; /// /// Represents tokens with information about contact vendor /// public static string ContactVendor => "Contact vendor tokens"; }