Webiant Logo Webiant Logo
  1. No results found.

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

PayPalProduct.cs

using Newtonsoft.Json;

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

/// 
/// Represents the PayPal product details object
/// 
public class PayPalProduct
{
    #region Properties

    /// 
    /// Gets or sets the name of the product.
    /// 
    [JsonProperty(PropertyName = "name")]
    public string Name { get; set; }

    /// 
    /// Gets or sets the vetting status of the product, if applicable.
    /// 
    [JsonProperty(PropertyName = "vetting_status")]
    public string VettingStatus { get; set; }

    /// 
    /// Gets or sets the status of the product.
    /// 
    [JsonProperty(PropertyName = "status")]
    public string Status { get; set; }

    /// 
    /// Gets or sets the array of the capability names bundled in the parent product.
    /// 
    [JsonProperty(PropertyName = "capabilities")]
    public List Capabilities { get; set; }

    #endregion
}