Webiant Logo Webiant Logo
  1. No results found.

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

OrderModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Plugin.Payments.PayPalCommerce.Models.Public;

/// 
/// Represents the order model
/// 
public record OrderModel : BaseNopModel
{
    #region Properties

    public bool CheckoutIsEnabled { get; set; }

    public bool LoginIsRequired { get; set; }

    public string OrderId { get; set; }

    public string Status { get; set; }

    public string PayerActionUrl { get; set; }

    public string Error { get; set; }

    #endregion
}