Skip to content

Commit f639432

Browse files
authored
Merge pull request #818 from Baros6647/main
Added the NOT_SUPPORTED value to the TrackingNumberValidationStatus enum
2 parents b2eabc4 + a2ba23e commit f639432

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInboundv20240320/TrackingNumberValidationStatus .cs

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInboundv20240320
1616
{
1717
/// <summary>
18-
/// Whether or not Amazon has validated the tracking number. If more than 24 hours have passed and the status is not yet 'VALIDATED', please verify the number and update if necessary. Can be: VALIDATED, NOT_VALIDATED.
18+
/// Whether or not Amazon has validated the tracking number. If more than 24 hours have passed and the status is not yet 'VALIDATED', please verify the number and update if necessary. Can be: VALIDATED, NOT_VALIDATED, NOT_SUPPORTED.
1919
/// </summary>
20-
/// <value>Whether or not Amazon has validated the tracking number. If more than 24 hours have passed and the status is not yet 'VALIDATED', please verify the number and update if necessary. Can be: VALIDATED, NOT_VALIDATED.
20+
/// <value>Whether or not Amazon has validated the tracking number. If more than 24 hours have passed and the status is not yet 'VALIDATED', please verify the number and update if necessary. Can be: VALIDATED, NOT_VALIDATED, NOT_SUPPORTED.
2121

2222
[JsonConverter(typeof(StringEnumConverter))]
2323
public enum TrackingNumberValidationStatus
@@ -27,6 +27,9 @@ public enum TrackingNumberValidationStatus
2727

2828
[EnumMember(Value = "NOT_VALIDATED")]
2929
NOT_VALIDATED = 2,
30+
31+
[EnumMember(Value = "NOT_SUPPORTED")]
32+
NOT_SUPPORTED = 3
3033
}
3134

3235
}

0 commit comments

Comments
 (0)