using Newtonsoft.Json; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; /// /// Represents the product capability details object /// public class ProductCapability { #region Properties /// /// Gets or sets the name of the capability. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// Gets or sets the status of the capability. /// [JsonProperty(PropertyName = "status")] public string Status { get; set; } /// /// Gets or sets the array of limitations on the capability. /// [JsonProperty(PropertyName = "limits")] public List Limits { get; set; } #endregion }