OBJECT

ChannelModerationActionOnAutomodTermEntry

Moderation Actions relating to automod terms. ex: add permitted term, remove permitted term, add banned term, remove banned term.

link GraphQL Schema definition

1type ChannelModerationActionOnAutomodTermEntry implements ChannelModerationActionEntry {
2
3# The action that was taken.
4action: ModerationAction!
5
6# Timestamp when action was taken.
7createdAt: Time!
8
9# UUID of the moderation action.
10id: ID!
11
12# If the action originated from a message caught by Automod.
13isFromAutomod: Boolean!
14
15# The moderator who took the action.
16moderator: User
17
18# Strings that were add/deleted from permitted/blocked lists.
19terms: [String!]
20
21}

link Required by

This element is not required by anyone