OBJECT

ChannelModerationActionOnAutomodLevelEntry

Moderation Actions relating to automod levels. ex: automod level change.

link GraphQL Schema definition

1type ChannelModerationActionOnAutomodLevelEntry implements ChannelModerationActionEntry {
2
3# The action that was taken.
4action: ModerationAction!
5
6# New automod level properties (based on Sift categories, to be deprecated).
7automodNewProperties: AutoModProperties
8
9# Previous automod level properties (based on Sift categories, to be deprecated).
10automodOldProperties: AutoModProperties
11
12# Previous automod level properties.
13automodPreviousLevels: AutoModConfiguration
14
15# The newly updated automod level properties.
16automodUpdatedLevels: AutoModConfiguration
17
18# Timestamp when action was taken.
19createdAt: Time!
20
21# UUID of the moderation action.
22id: ID!
23
24# The moderator who took the action.
25moderator: User
26
27}

link Required by

This element is not required by anyone