Try your search with a different keyword or use * as a wildcard.
using Newtonsoft.Json;
namespace Nop.Plugin.Widgets.GoogleAnalytics.Api.Models;
[JsonObject]
[Serializable]
public class Item
{
///
/// The ID of the item
///
[JsonProperty("item_id")]
public string ItemId { get; set; }
///
/// The name of the item
///
[JsonProperty("item_name")]
public string ItemName { get; set; }
///
/// A product affiliation to designate a supplying company or brick and mortar store location
///
[JsonProperty("affiliation")]
public string Affiliation { get; set; }
///
/// The category of the item. If used as part of a category hierarchy or taxonomy then this will be the first category
///
[JsonProperty("item_category")]
public string ItemCategory { get; set; }
///
/// The monetary price of the item, in units of the specified currency parameter
///
[JsonProperty("price")]
public decimal Price { get; set; }
///
/// Item quantity
///
[JsonProperty("quantity")]
public int Quantity { get; set; }
}