-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from Worth-NL/feature/OpenKlant_2.0_FirstCalls
Feature/open klant 2.0
- Loading branch information
Showing
137 changed files
with
4,892 additions
and
1,460 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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
38 changes: 38 additions & 0 deletions
38
EventsHandler/Api/EventsHandler/Behaviors/Communication/Enums/v2/FeedbackTypes.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,38 @@ | ||
// © 2024, Worth Systems. | ||
|
||
using EventsHandler.Behaviors.Mapping.Enums.NotifyNL; | ||
|
||
namespace EventsHandler.Behaviors.Communication.Enums.v2 | ||
{ | ||
/// <summary> | ||
/// The types of feedback mapping "Notify NL" Web API service <see cref="DeliveryStatuses"/>. | ||
/// </summary> | ||
/// <remarks> | ||
/// NOTE: In "OMC workflow v2" the final communication with the user is based on this value. | ||
/// </remarks> | ||
public enum FeedbackTypes | ||
{ | ||
/// <summary> | ||
/// Default value. | ||
/// </summary> | ||
Unknown = 0, | ||
|
||
/// <summary> | ||
/// "Notify NL" Web API service returned one of positive statuses which can be interpreted as success. | ||
/// </summary> | ||
Success = 1, | ||
|
||
/// <summary> | ||
/// "Notify NL" Web API service returned one of ambiguous or internal statuses which should be treated as info. | ||
/// </summary> | ||
/// <remarks> | ||
/// NOTE: For logging purposes only! | ||
/// </remarks> | ||
Info = 2, | ||
|
||
/// <summary> | ||
/// "Notify NL" Web API service returned one of negative statuses which can be interpreted as failure. | ||
/// </summary> | ||
Failure = 3 | ||
} | ||
} |
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
Oops, something went wrong.