ENUM

ResourceRestrictionOption

An enumeration of the different restriction options.

link GraphQL Schema definition

1enum ResourceRestrictionOption {
2
3# Allows users holding the channel VIP role to access the resource.
4ALLOW_CHANNEL_VIP
5
6# Allows users holding the channel moderator role to access the resource.
7ALLOW_CHANNEL_MODERATOR
8
9# Allows only users with tier 3 subscriptions to access the resource.
10ALLOW_TIER_3_ONLY
11
12# Allows only users with tier 2 and 3 subscriptions to access the resource.
13ALLOW_TIER_2_AND_3_ONLY
14
15# Allows users with any tier subscriptions to access the resource.
16ALLOW_ALL_TIERS
17}