File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
Source/FikaAmazonAPI/NotificationMessages Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ public class NotificationPayload
24
24
25
25
[ JsonProperty ( "reportProcessingFinishedNotification" ) ]
26
26
public ReportProcessingFinishedNotification ReportProcessingFinishedNotification { get ; set ; }
27
+
28
+ [ JsonProperty ( "feedProcessingFinishedNotification" ) ]
29
+ public FeedProcessingFinishedNotification FeedProcessingFinishedNotification { get ; set ; }
27
30
/// <summary>
28
31
/// An explanation about the purpose of this instance.
29
32
/// </summary>
You can’t perform that action at this time.
0 commit comments