ENUM

ClaimPrimeOfferErrorCode

Error types recognized.

link GraphQL Schema definition

1enum ClaimPrimeOfferErrorCode {
2
3# Status when offer is already claimed by the current user or an associated
4# account.
5OFFER_ALREADY_CLAIMED
6
7# Error when the offer is unclaimable because of an entitlement to the linked
8# twitch account
9OFFER_CLAIMED_ON_TWITCH_NOT_AMAZON
10
11# Unknown error being returned from service.
12UNKNOWN
13
14# Status when user is not logged in to an Amazon account.
15NOT_SIGNED_IN
16
17# Status when a user has no linked Twitch accounts, no selected Twitch account, or
18# an invalid selected Twitch account.
19NO_SELECTED_TWITCH_ACCOUNT
20
21# Users Twitch Prime membership is in an invalid Prime marketplace for this Offer.
22INELIGIBLE_COUNTRY
23}