using Nop.Core.Domain.Customers; namespace Nop.Services.Orders; /// /// Checkout attribute helper /// public partial interface ICheckoutAttributeFormatter { /// /// Formats attributes /// /// Attributes in XML format /// Customer /// Separator /// A value indicating whether to encode (HTML) values /// A value indicating whether to render prices /// A value indicating whether to HTML hyperlink tags could be rendered (if required) /// /// A task that represents the asynchronous operation /// The task result contains the attributes /// Task FormatAttributesAsync(string attributesXml, Customer customer, string separator = "
", bool htmlEncode = true, bool renderPrices = true, bool allowHyperlinks = true); }