ENUM

ContentType

An enumeration on the different content type that enable tagging.

link GraphQL Schema definition

1enum ContentType {
2
3# Clip will enable tagging in v2.
4CLIP
5
6# User is enabled for tagging in v1.
7USER
8
9LIVE_CHANNEL@deprecated( reason: "Use 'USER' instead" )
10
11# VOD will enable tagging in v2.
12VOD
13
14# Games and other stream categories.
15CATEGORY
16}