Webiant Logo Webiant Logo
  1. No results found.

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

PaymentStatus.cs

namespace Nop.Core.Domain.Payments;

/// 
/// Represents a payment status enumeration
/// 
public enum PaymentStatus
{
    /// 
    /// Pending
    /// 
    Pending = 10,

    /// 
    /// Authorized
    /// 
    Authorized = 20,

    /// 
    /// Paid
    /// 
    Paid = 30,

    /// 
    /// Partially Refunded
    /// 
    PartiallyRefunded = 35,

    /// 
    /// Refunded
    /// 
    Refunded = 40,

    /// 
    /// Voided
    /// 
    Voided = 50
}