Webiant Logo Webiant Logo
  1. No results found.

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

RefundPaymentRequest.cs

using Nop.Core.Domain.Orders;

namespace Nop.Services.Payments;

/// 
/// Represents a RefundPaymentResult
/// 
public partial class RefundPaymentRequest
{
    /// 
    /// Gets or sets an order
    /// 
    public Order Order { get; set; }

    /// 
    /// Gets or sets an amount
    /// 
    public decimal AmountToRefund { get; set; }

    /// 
    /// Gets or sets a value indicating whether it's a partial refund; otherwise, full refund
    /// 
    public bool IsPartialRefund { get; set; }
}