Skip to content

Commit 8006268

Browse files
authored
Merge pull request #2 from abuzuhri/main
Merge from upstream
2 parents e2b67d3 + 63dc911 commit 8006268

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using static FikaAmazonAPI.Utils.Constants;
2+
3+
namespace FikaAmazonAPI.NotificationMessages
4+
{
5+
public class FeedProcessingFinishedNotification
6+
{
7+
8+
public string sellerId { get; set; }
9+
public string feedId { get; set; }
10+
public string feedType { get; set; }
11+
public string processingStatus { get; set; }
12+
public string resultFeedDocumentId { get; set; }
13+
}
14+
}

Source/FikaAmazonAPI/NotificationMessages/NotificationPayload.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ public class NotificationPayload
2424

2525
[JsonProperty("reportProcessingFinishedNotification")]
2626
public ReportProcessingFinishedNotification ReportProcessingFinishedNotification { get; set; }
27+
28+
[JsonProperty("feedProcessingFinishedNotification")]
29+
public FeedProcessingFinishedNotification FeedProcessingFinishedNotification { get; set; }
2730
/// <summary>
2831
/// An explanation about the purpose of this instance.
2932
/// </summary>

0 commit comments

Comments
 (0)