File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Source/FikaAmazonAPI/NotificationMessages Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ public class NotificationPayload
21
21
public FbaOutboundShipmentStatusNotification FbaOutboundShipmentStatusNotification { get ; set ; }
22
22
public FulfillmentOrderStatusNotification FulfillmentOrderStatusNotification { get ; set ; }
23
23
24
+
25
+ [ JsonProperty ( "reportProcessingFinishedNotification" ) ]
26
+ public ReportProcessingFinishedNotification ReportProcessingFinishedNotification { get ; set ; }
24
27
/// <summary>
25
28
/// An explanation about the purpose of this instance.
26
29
/// </summary>
Original file line number Diff line number Diff line change
1
+ namespace FikaAmazonAPI . NotificationMessages
2
+ {
3
+ public class ReportProcessingFinishedNotification
4
+ {
5
+
6
+ public string sellerId { get ; set ; }
7
+ public string reportId { get ; set ; }
8
+ public string reportType { get ; set ; }
9
+ public string processingStatus { get ; set ; }
10
+ public string reportDocumentId { get ; set ; }
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments