Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
namespace FikaAmazonAPI.AmazonSpApiSDK.Models.FulfillmentInboundv20240320
{
/// <summary>
/// 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.
/// 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.
/// </summary>
/// <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.
/// <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.

[JsonConverter(typeof(StringEnumConverter))]
public enum TrackingNumberValidationStatus
Expand All @@ -27,6 +27,9 @@ public enum TrackingNumberValidationStatus

[EnumMember(Value = "NOT_VALIDATED")]
NOT_VALIDATED = 2,

[EnumMember(Value = "NOT_SUPPORTED")]
NOT_SUPPORTED = 3
}

}
Loading