Webiant Logo Webiant Logo
  1. No results found.

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

OrderRefundedProperty.cs

using Newtonsoft.Json;

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

public class OrderRefundedProperty : OrderEventBaseProperty, IEventProperty
{
    [JsonProperty("refundedLineItems")] public IList RefundedLineItems { get; set; }
    [JsonProperty("totalRefundedAmount")] public float TotalRefundedAmount { get; set; }
    [JsonIgnore] public string EventName => CustomerEventType.OrderRefunded;
    [JsonIgnore] public string EventVersion => "v2";
}