ENUM

CreateClipErrorCode

CreateClipErrorCode contains the possible errors that can occur when creating a clip.

link GraphQL Schema definition

1enum CreateClipErrorCode {
2
3# This channel cannot be clipped.
4CHANNEL_NOT_CLIPPABLE
5
6# The channel has been banned and cannot be clipped.
7CHANNEL_BANNED
8
9# User has been banned from the channel and cannot clip.
10USER_BANNED
11
12# User has been timed out from the channel and cannot clip.
13USER_TIMED_OUT
14
15# Clip cannot be created because channel is no longer live.
16CHANNEL_NOT_LIVE
17
18# Clip cannot be created because the request is throttled.
19REQUEST_THROTTLED
20
21# User does not have permissions and cannot clip.
22USER_RESTRICTED
23
24# Unknown error.
25UNKNOWN
26}