Webiant Logo Webiant Logo
  1. No results found.

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

RecurringPaymentType.cs

namespace Nop.Services.Payments;

/// 
/// Represents a recurring payment type
/// 
public enum RecurringPaymentType
{
    /// 
    /// Not supported
    /// 
    NotSupported = 0,

    /// 
    /// Manual
    /// 
    Manual = 10,

    /// 
    /// Automatic (payment is processed on payment gateway site)
    /// 
    Automatic = 20
}