Webiant Logo Webiant Logo
  1. No results found.

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

ProductCapabilityLimit.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models;

/// 
/// Represents the product capability limit details object
/// 
public class ProductCapabilityLimit
{
    #region Properties

    /// 
    /// Gets or sets the type of the limit.
    /// 
    [JsonProperty(PropertyName = "type")]
    public string Type { get; set; }

    #endregion
}