Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Orders;
namespace Nop.Services.Payments;
/// <summary>
/// Represents a PostProcessPaymentRequest
/// </summary>
public partial class PostProcessPaymentRequest
{
/// <summary>
/// Gets or sets an order. Used when order is already saved (payment gateways that redirect a customer to a third-party URL)
/// </summary>
public Order Order { get; set; }
}