using Newtonsoft.Json; namespace Nop.Plugin.Widgets.FacebookPixel.Domain; public class ConversionsEventCustomData { /// /// Gets or sets a numeric value associated with this event. this could be a monetary value or a value in some other metric /// [JsonProperty(PropertyName = "value")] public decimal? Value { get; set; } /// /// Gets or sets the currency for the value specified, if applicable. currency must be a valid iso 4217 three-digit currency code /// [JsonProperty(PropertyName = "currency")] public string Currency { get; set; } /// /// Gets or sets the content ids associated with the event, such as product skus for items in an addtocart event. if content_type is a product, then your content ids must be an array with a single string value. otherwise, this array can contain any number of string values /// [JsonProperty(PropertyName = "content_ids")] public List ContentIds { get; set; } /// /// Gets or sets the content type /// [JsonProperty(PropertyName = "content_type")] public string ContentType { get; set; } /// /// Gets or sets the category of the content associated with the event /// [JsonProperty(PropertyName = "content_category")] public string ContentCategory { get; set; } /// /// Gets or sets the name of the page or product associated with the event /// [JsonProperty(PropertyName = "content_name")] public string ContentName { get; set; } /// /// Gets or sets a search query made by a user. /// [JsonProperty(PropertyName = "search_string")] public string SearchString { get; set; } /// /// Gets or sets the status of the registration event as a string /// [JsonProperty(PropertyName = "status")] public string Status { get; set; } /// /// Gets or sets a list of json objects that contain the product ids associated with the event plus information about the products /// [JsonProperty(PropertyName = "contents")] public List Contents { get; set; } }