ENUM

ReportContentType

Types of content that can be reported.

link GraphQL Schema definition

1enum ReportContentType {
2
3# Report against a channel feed comment.
4CHANNEL_FEED_COMMENT_REPORT
5
6# Report against a channel feed post.
7CHANNEL_FEED_POST_REPORT
8
9# Report against a chat message.
10CHAT_REPORT
11
12# Report against a channel's channel points.
13CHANNEL_POINTS_REPORT
14
15# Report against a clip.
16CLIP_REPORT
17
18# (Deprecated) Report against a vod collection.
19COLLECTION_REPORT
20
21# (Deprecated) Report against a curse private group.
22CURSE_PRIVATE_GROUP
23
24# (Deprecated) Report against a curse public group.
25CURSE_PUBLIC_GROUP
26
27# (Deprecated) Report against a curse whisper.
28CURSE_WHISPER
29
30# Report against an emote.
31EMOTE_REPORT
32
33# Report against an oracle event.
34EVENT_REPORT
35
36# Report against an extension.
37EXTENSION_REPORT
38
39# Report against a live up notification.
40LIVE_UP_REPORT
41
42# Report against a livestream.
43LIVESTREAM_REPORT
44
45# Report against a poll.
46POLL_REPORT
47
48# Report against a raid.
49RAID_REPORT
50
51# Report against a reward redemption.
52REWARD_REDEMPTION_REPORT
53
54# Report against a chatroom.
55ROOM_REPORT
56
57# Report against sings group name.
58SINGS_GROUP_NAME_REPORT
59
60# Report against sings group biography.
61SINGS_GROUP_BIO_REPORT
62
63# Report against sings group chat.
64SINGS_GROUP_CHAT_REPORT
65
66# Report against a sings group vod comment.
67SINGS_VOD_COMMENT_REPORT
68
69# Report against sings duet seed.
70SINGS_DUET_SEED_REPORT
71
72# Report against an unban request.
73UNBAN_REQUEST_REPORT
74
75# Report against a live user.
76USER_REPORT
77
78# Report against a twitch vod comment.
79VOD_COMMENT_REPORT
80
81# Report against a twitch vod.
82VOD_REPORT
83
84# Report against a whisper. Deprecated in favor of the whisperReport mutation.
85WHISPER_REPORT@deprecated( reason: "use whisperReport mutation instead." )
86}