ENUM

ModLogsAction

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

link GraphQL Schema definition

1enum ModLogsAction {
2
3# Default Action.
4INVALID_ACTION
5
6# Channel Mod chat bans a user.
7BAN_USER
8
9# Channel Mod chat timeouts a user.
10TIMEOUT_USER
11
12# Channel Mod chat unbans a user.
13UNBAN_USER
14
15# Channel Mod sets chat mode.
16SET_CHANNEL_MODE
17
18# Channel Mod changes.
19CHANGE_CHANNEL_RULES
20
21# Channel Mod approves an automod caught message.
22ALLOW_MESSAGE
23
24# Channel Mod denies an automod caught message.
25DENY_MESSAGE
26
27# Channel Mod updates mod terms.
28UPDATE_MODERATED_TERMS
29
30# Channel Mod creates a mod comment about a user.
31COMMENT
32
33# Channel Mod chat untimeouts a user.
34UNTIMEOUT_USER
35}