ENUM

ResourceRestrictionType

An enumeration of the different restriction types.

link GraphQL Schema definition

1enum ResourceRestrictionType {
2
3# The resource is restricted for an unknown reason.
4UNKNOWN
5
6# The resource is restricted by a subscription.
7SUB_ONLY_LIVE
8
9# The resource is restricted by the All-Access Pass.
10ALL_ACCESS_PASS
11
12# The resource is restricted by the organization membership logic in RBAC.
13ORGANIZATION_ACCESS_ONLY
14}