ENUM

BroadcastType

Describes from which source the video originated. NOTE: Should have been named VideoBroadcastType.

link GraphQL Schema definition

1enum BroadcastType {
2
3# If the video is of a past broadcast, it's an ARCHIVE.
4ARCHIVE
5
6# When the video is a subsection of a past broadcast, it's a HIGHLIGHT.
7HIGHLIGHT
8
9# (Legacy) When the video is directly uploaded to Twitch via the upload tool, it's
10# an UPLOAD.
11UPLOAD
12
13# When the video is directly uploaded to Twitch via the video manager, it's an
14# PREMIERE_UPLOAD.
15PREMIERE_UPLOAD
16
17# When a video has been premiered on Twitch and is saved, it's a PAST_PREMIERE.
18PAST_PREMIERE
19}