Webiant Logo Webiant Logo
  1. No results found.

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

OrderConfirmModel.cs

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

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

    public string OrderGuid { get; set; }

    public string LiabilityShift { get; set; }

    public bool TermsOfServiceOnOrderConfirmPage { get; set; }

    public bool TermsOfServicePopup { get; set; }

    public string MinOrderTotalWarning { get; set; }

    public bool DisplayCaptcha { get; set; }

    public IList Warnings { get; set; } = new List();

    #endregion
}