Try your search with a different keyword or use * as a wildcard.
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
}