Webiant Logo Webiant Logo
  1. No results found.

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

CartEventBaseProperty.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Omnisend.DTO.Events;

public abstract class CartEventBaseProperty
{
    [JsonProperty("abandonedCheckoutURL")] public string AbandonedCheckoutURL { get; set; }
    [JsonProperty("cartID")] public string CartId { get; set; }
    [JsonProperty("currency")] public string Currency { get; set; }
    [JsonProperty("lineItems")] public IList LineItems { get; set; }
    [JsonProperty("value")] public float Value { get; set; }
}