namespace Nop.Services.Payments; /// /// Represents a payment method type /// public enum PaymentMethodType { /// /// All payment information is entered on the site /// Standard = 10, /// /// A customer is redirected to a third-party site in order to complete the payment /// Redirection = 15, /// /// Button /// Button = 20, }