ENUM

OfferDeliveryMethod

Deliver method type for Prime Offers entitlements.

link GraphQL Schema definition

1enum OfferDeliveryMethod {
2
3# The entitlement will be delivered as a claim code, which can be used to get the
4# entitlement.
5CLAIM_CODE
6
7# The entitlement will be directly delivered.
8DIRECT_ENTITLEMENT
9
10# The entitlement will be directly delivered and a Twitch account is not needed
11# for the offer.
12SES_ENTITLEMENT
13
14# Misspelling of EXTERNAL_OFFER.
15EXTERNAL@deprecated( reason: "Use EXTERNAL_OFFER instead" )
16
17# The entitlement will be delivered via external means.
18EXTERNAL_OFFER
19}