Skip to content

Commit 6041184

Browse files
committed
more fix to #282
1 parent e5a37c0 commit 6041184

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInbound/PackageStatus.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
* Generated by: https://github.com/swagger-api/swagger-codegen.git
99
*/
1010

11+
using Newtonsoft.Json;
12+
using Newtonsoft.Json.Converters;
1113
using System.Runtime.Serialization;
1214

1315
namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInbound
@@ -16,7 +18,7 @@ namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInbound
1618
/// The shipment status of the package.
1719
/// </summary>
1820
/// <value>The shipment status of the package.</value>
19-
21+
[JsonConverter(typeof(StringEnumConverter))]
2022
public enum PackageStatus
2123
{
2224

@@ -42,7 +44,7 @@ public enum PackageStatus
4244
/// <summary>
4345
/// Enum CHECKEDIN for value: CHECKED_IN
4446
/// </summary>
45-
47+
[EnumMember(Value = "CHECKED_IN")]
4648
CHECKEDIN,
4749

4850
/// <summary>

0 commit comments

Comments
 (0)