Skip to content

Commit 9d6f2df

Browse files
authored
Merge pull request #209 from hellokids86/main
added ReportProcessingFinishedNotification to notificationpayload
2 parents 65f356e + daf0ae5 commit 9d6f2df

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Source/FikaAmazonAPI/NotificationMessages/NotificationPayload.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public class NotificationPayload
2121
public FbaOutboundShipmentStatusNotification FbaOutboundShipmentStatusNotification { get; set; }
2222
public FulfillmentOrderStatusNotification FulfillmentOrderStatusNotification { get; set; }
2323

24+
25+
[JsonProperty("reportProcessingFinishedNotification")]
26+
public ReportProcessingFinishedNotification ReportProcessingFinishedNotification { get; set; }
2427
/// <summary>
2528
/// An explanation about the purpose of this instance.
2629
/// </summary>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

0 commit comments

Comments
 (0)