Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PaymentMethodType.cs

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,
}