-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
360 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
using StrongGrid.Json; | ||
using System.Runtime.Serialization; | ||
using System.Text.Json.Serialization; | ||
|
||
namespace StrongGrid.Models | ||
{ | ||
/// <summary> | ||
/// Enumeration to indicate the type of SMTP failure. | ||
/// </summary> | ||
[JsonConverter(typeof(StringEnumConverter<BounceClassification>))] | ||
public enum BounceClassification | ||
{ | ||
/// <summary> | ||
/// Unclassified. | ||
/// </summary> | ||
[EnumMember(Value = "Unclassified")] | ||
Unclassified, | ||
|
||
/// <summary> | ||
/// Invalid Addres. | ||
/// </summary> | ||
[EnumMember(Value = "Invalid Address")] | ||
InvalidAddress, | ||
|
||
/// <summary> | ||
/// Technical. | ||
/// </summary> | ||
[EnumMember(Value = "Technical")] | ||
Technical, | ||
|
||
/// <summary> | ||
/// Content. | ||
/// </summary> | ||
[EnumMember(Value = "Content")] | ||
Content, | ||
|
||
/// <summary> | ||
/// Reputation. | ||
/// </summary> | ||
[EnumMember(Value = "Reputation")] | ||
Reputation, | ||
|
||
/// <summary> | ||
/// Frequency or volume. | ||
/// </summary> | ||
[EnumMember(Value = "Frequency or Volume Too High")] | ||
FrequencyOrVolume, | ||
|
||
/// <summary> | ||
/// Mailbox Unavailable. | ||
/// </summary> | ||
[EnumMember(Value = "Mailbox Unavailable")] | ||
MailboxUnavailable, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.