Webiant Logo Webiant Logo
  1. No results found.

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

UniversalProductCode.cs

using Newtonsoft.Json;

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

/// <summary>
/// Represents the Universal Product Code (UPC)
/// </summary>
public class UniversalProductCode
{
    #region Properties

    /// <summary>
    /// Gets or sets the Universal Product Code type.
    /// </summary>
    [JsonProperty(PropertyName = "type")]
    public string Type { get; set; }

    /// <summary>
    /// Gets or sets the UPC product code of the item.
    /// </summary>
    [JsonProperty(PropertyName = "code")]
    public string Code { get; set; }

    #endregion
}