Webiant Logo Webiant Logo
  1. No results found.

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

VoidPaymentResult.cs

using Nop.Core.Domain.Payments;

namespace Nop.Services.Payments;

/// <summary>
/// Represents a VoidPaymentResult
/// </summary>
public partial class VoidPaymentResult : BaseNopResult
{
    /// <summary>
    /// Gets or sets a payment status after processing
    /// </summary>
    public PaymentStatus NewPaymentStatus { get; set; } = PaymentStatus.Pending;
}