Webiant Logo Webiant Logo
  1. No results found.

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

PostProcessPaymentRequest.cs

using Nop.Core.Domain.Orders;

namespace Nop.Services.Payments;

/// 
/// Represents a PostProcessPaymentRequest
/// 
public partial class PostProcessPaymentRequest
{
    /// 
    /// Gets or sets an order. Used when order is already saved (payment gateways that redirect a customer to a third-party URL)
    /// 
    public Order Order { get; set; }
}