ENUM

CreateVideoBookmarkErrorCode

CreateVideoBookmarkErrorCode are the possible errors that this mutation returns.

link GraphQL Schema definition

1enum CreateVideoBookmarkErrorCode {
2
3# The broadcaster is not live.
4BROADCASTER_NOT_LIVE
5
6# Archives are disabled for the channel.
7ARCHIVES_DISABLED
8
9# The rerun broadcast format is unsupported..
10BROADCAST_FORMAT_INVALID_RERUN
11
12# The premiere broadcast format is unsupported.
13BROADCAST_FORMAT_INVALID_PREMIERE
14
15# The VOD for the associated broadcast is not yet ready.
16VOD_NOT_READY
17
18# An unexpected internal server error occurred.
19INTERNAL_SERVER_ERROR
20
21# The user is unauthorized to create the bookmark.
22USER_UNAUTHORIZED
23
24# The description length has exceeded the max length.
25MAX_DESCRIPTION_LENGTH_EXCEEDED
26}