ENUM

SubscriptionBenefitState

The logic state of the Subscription Benefit.

link GraphQL Schema definition

1enum SubscriptionBenefitState {
2
3# Unknown (0-value) state.
4UNKNOWN
5
6# Active (recurring) state.
7ACTIVE
8
9# State when a user has initiated a DNR request.
10DNR_INITIATED
11
12# State for when Twitch has completed a DNR request.
13WILL_NOT_RENEW
14
15# State for when Twitch has initiated a refund request.
16CANCEL_INITIATED
17
18# State for when Twitch has completed a refund request.
19CANCELLED
20
21# State for when a Subscription has been paused (used to support Android account
22# hold feature).
23ON_HOLD
24}