Webiant Logo Webiant Logo
  1. No results found.

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

PayLaterConfigurationModel.cs

using Nop.Web.Framework.Models;

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

/// 
/// Represents the Pay Later configuration model
/// 
public record PayLaterConfigurationModel : BaseNopModel
{
    public string ClientId { get; set; }

    public bool UseSandbox { get; set; }

    public string Locale { get; set; }

    public string Config { get; set; }
}