OBJECT

ChannelClipsCreationRestrictedTo

ChannelClipsCreationRestrictedTo contains the roles that are allowed to create Clips on a channel that has isClipsEnabled set to true.

link GraphQL Schema definition

1type ChannelClipsCreationRestrictedTo {
2
3# Clip creation is restricted to users that are followers.
4isFollower: Boolean!
5
6# Clip creation is restricted to users that are subscribers.
7isSubscriber: Boolean!
8
9}