-
Notifications
You must be signed in to change notification settings - Fork 3
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
4 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
src/Altinn.Notifications.Core/Enums/SmsNotificationResultType.cs
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,32 @@ | ||
namespace Altinn.Notifications.Core.Enums; | ||
|
||
/// <summary> | ||
/// Enum describing sms notification result types | ||
/// </summary> | ||
public enum SmsNotificationResultType | ||
{ | ||
/// <summary> | ||
/// Default result for new notifications | ||
/// </summary> | ||
New, | ||
|
||
/// <summary> | ||
/// Sms notification being sent | ||
/// </summary> | ||
Sending, | ||
|
||
/// <summary> | ||
/// Sms notification sent to service provider | ||
/// </summary> | ||
Accepted, | ||
|
||
/// <summary> | ||
/// Failed, unknown reason | ||
/// </summary> | ||
Failed, | ||
|
||
/// <summary> | ||
/// Failed, invalid mobilenumber | ||
/// </summary> | ||
Failed_InvalidRecipient | ||
} |
File renamed without changes.
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