OBJECT

ChannelClipsSettings

ChannelClipsSettings are the clips setting for the channel, including restriction settings for clip creation.

link GraphQL Schema definition

1type ChannelClipsSettings {
2
3# If isClipsEnabled is true, allow the following roles to create Clips on the
4# channel.
5creationRestrictedTo: ChannelClipsCreationRestrictedTo
6
7# If there are clip creation restrictions, use the following to add options to
8# those restrictions.
9creationRestrictionOptions: ChannelClipsCreationRestrictionOptions
10
11# Set whether or not users can create Clips on this channel.
12isClipsCreationEnabled: Boolean!
13
14}