Webiant Logo Webiant Logo
  1. No results found.

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

CustomerEventType.cs

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

public static class CustomerEventType
{
    public static string AddedProduct => "added product to cart";

    public static string StartedCheckout => "started checkout";

    public static string PlacedOrder => "placed order";

    public static string OrderPaid => "paid for order";

    public static string OrderCanceled => "order canceled";

    public static string OrderFulfilled => "order fulfilled";

    public static string OrderRefunded => "order refunded";
}