ENUM

ResourceRestrictionExemptionType

An enumeration of the different exemption types.

link GraphQL Schema definition

1enum ResourceRestrictionExemptionType {
2
3# The restriction is exempt for an unknown reason.
4UNKNOWN
5
6# The restriction is exempt for all users.
7ALL
8
9# The restriction is exempt for staff accounts.
10STAFF
11
12# The restriction is exempt for site admins.
13SITE_ADMIN
14
15# The restriction is exempt for owning a product.
16PRODUCT
17
18# The restriction is exempt for viewers that are in the same org as the channel
19# owner.
20ORGANIZATION_MEMBER
21
22# The restriction is exempt for the preview duration.
23PREVIEW
24
25# The restriction is exempt for channel moderators.
26CHANNEL_MODERATOR
27
28# The restriction is exempt for channel VIPs.
29CHANNEL_VIP
30}