We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84dbc98 commit f6d9cacCopy full SHA for f6d9cac
src/SocketLabs.EventWebhooks.Extensions/Models/FailedEvent.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
+using System.Text.Json.Serialization;
5
using System.Threading.Tasks;
6
7
namespace SocketLabs.EventWebhooks.Extensions.Models
@@ -11,6 +12,8 @@ public class FailedEvent : WebhookEventBase
11
12
public string? BounceStatus { get; set; }
13
public string? FromAddress { get; set; }
14
public int FailureCode { get; set; }
15
+
16
+ [JsonConverter(typeof(JsonStringEnumConverter))]
17
public FailureType FailureType { get; set; }
18
public string? Reason { get; set; }
19
public string? RemoteMta { get; set; }
0 commit comments