Add OBFUSCATED_SHIPMENT_ID to RelatedIdentifierNameEnum - #956
Open
lboyarsky wants to merge 1 commit into
Open
Conversation
Amazon started returning OBFUSCATED_SHIPMENT_ID in relatedIdentifierName on the Finances 2024-06-19 listTransactions response on 10 September 2026. The enum does not carry it, so StringEnumConverter throws and the whole page fails to deserialize (abuzuhri#955). The value is a short opaque token that accompanies SHIPMENT_ID and never replaces it. It is not in Amazon's published model for this API, as EVENT_GROUP_ID and SAFET_CLAIM_ID before it were not. Verified against a live listTransactions response that previously threw. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Fixes #955.
Amazon started returning
OBFUSCATED_SHIPMENT_IDinrelatedIdentifierNameon Finances 2024-06-19listTransactionson 10 Sep 2026. The enum doesn't carry it, soStringEnumConverterthrows and the whole page fails to deserialize.It's a short opaque token that appears alongside
SHIPMENT_ID, never instead of it. Not in Amazon's published model for this API, same asEVENT_GROUP_IDandSAFET_CLAIM_ID.One enum member added. Verified against a live response that previously threw.