From 88f0589d22842689417c7eae43d59df02a94b8c6 Mon Sep 17 00:00:00 2001 From: baros6647 Date: Fri, 3 Jan 2025 11:38:06 -0500 Subject: [PATCH] Added the ShipsInProductPackaging value to the PrepInstruction enum --- .../Models/FulfillmentInbound/PrepInstruction.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PrepInstruction.cs b/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PrepInstruction.cs index ee1719d2..b02f8148 100644 --- a/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PrepInstruction.cs +++ b/Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PrepInstruction.cs @@ -112,7 +112,13 @@ public enum PrepInstruction /// Enum NoPrep for value: NoPrep /// [EnumMember(Value = "NoPrep")] - NoPrep = 15 + NoPrep = 15, + + /// + /// Enum ShipsInProductPackaging for value: ShipsInProductPackaging + /// + [EnumMember(Value = "ShipsInProductPackaging")] + ShipsInProductPackaging = 16 } } \ No newline at end of file