using Newtonsoft.Json; namespace Nop.Plugin.Payments.PayPalCommerce.Services.Api.Models; /// /// Represents the Universal Product Code (UPC) /// public class UniversalProductCode { #region Properties /// /// Gets or sets the Universal Product Code type. /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } /// /// Gets or sets the UPC product code of the item. /// [JsonProperty(PropertyName = "code")] public string Code { get; set; } #endregion }