ENUM

ModerationAction

ModerationAction represents the recorded actions a channel moderator takes on a channel.

link GraphQL Schema definition

1enum ModerationAction {
2
3# Moderator changes Automod settings levels.
4AUTOMOD_LEVEL_CHANGE
5
6# Moderator allows message caught by Automod.
7ALLOW_MESSAGE
8
9# Moderator approves unban request.
10APPROVE_UNBAN_REQUEST
11
12# Moderator bans a user.
13BAN_USER
14
15# Moderator adds terms to Automod blocked list.
16BLOCKED_TERM_ADD
17
18# Moderator removes terms to Automod blocked list.
19BLOCKED_TERM_REMOVE
20
21# Moderator clears chat.
22CHAT_CLEAR
23
24# Moderator creates a mod comment about a user.
25COMMENT
26
27# Moderator deletes a chat message.
28DELETE_MESSAGE
29
30# Moderator denies message caught by Automod.
31DENY_MESSAGE
32
33# Moderator denies unban request.
34DENY_UNBAN_REQUEST
35
36# Moderator turns emotes only chat off.
37EMOTES_ONLY_OFF
38
39# Moderator turns chat to motes only.
40EMOTES_ONLY_ON
41
42# Moderator turns followers only chat off.
43FOLLOWERS_ONLY_OFF
44
45# Moderator turns chat to followers only.
46FOLLOWERS_ONLY_ON
47
48# Moderator hosts another channel.
49HOST
50
51# Default Action.
52INVALID_ACTION
53
54# Moderator unmods a user.
55UNMOD_USER
56
57# Moderator mods a user.
58MOD_USER
59
60# Moderator adds terms to Automod permitted list.
61PERMITTED_TERM_ADD
62
63# Moderator removes terms to Automod permitted list.
64PERMITTED_TERM_REMOVE
65
66# Moderator raids another channel.
67RAID
68
69# Moderator turns slow off in chat.
70SLOW_OFF
71
72# Moderator slows chat.
73SLOW_ON
74
75# Moderator turns subscribers only chat off.
76SUBS_ONLY_OFF
77
78# Moderator turns chat to subscribers only.
79SUBS_ONLY_ON
80
81# Moderator timeouts a user.
82TIMEOUT_USER
83
84# Moderator unbans a user.
85UNBAN_USER
86
87# Moderator unhosts another channel.
88UNHOST
89
90# Moderator turns unique only chat off.
91UNIQUE_OFF
92
93# Moderator turns unique only chat on.
94UNIQUE_ON
95
96# Moderator unraids another channel.
97UNRAID
98
99# Moderator untimeouts a user.
100UNTIMEOUT_USER
101
102# Moderator makes user not vip.
103UNVIP_USER
104
105# Moderator makes user vip.
106VIP_USER
107}