ENUM

RedeemSubscriptionResponseErrorCode

An Error indicating why the submit failed, if it did.

link GraphQL Schema definition

1enum RedeemSubscriptionResponseErrorCode {
2
3# The Channel ID is invalid.
4INVALID_CHANNEL
5
6# The User is not Eligible to Redeem Subscription to this Channel.
7NOT_ELIGIBLE
8
9# Something unexpected occured when Redeeming the Subscription.
10UNKNOWN
11
12# The User has already redeemed the subscription offerd by the channel.
13USER_HAS_REDEEMED_SUBSCRIPTION
14
15# The channel the user is trying to redeem from has not been off-boarded.
16CHANNEL_NOT_OFF_BOARDED
17
18# The user already has an existing subscription to the target channel they are
19# trying to redeem to.
20USER_HAS_EXISTING_SUBSCRIPTION
21
22# The target Channel the user is trying to redeem to is Invalid.
23REDEEM_CHANNEL_INVALID
24
25# The user is not subscribed to the channel that is being off-boarded.
26USER_NOT_SUBSCRIBED_TO_OFF_BOARDED_CHANNEL
27}