OBJECT

ChannelModerationActionOnUserEntry

Moderation Actions relating to a user. ex: ban, unban, timeout, untimeout, mod, unmod, vip, unvip.

link GraphQL Schema definition

1type ChannelModerationActionOnUserEntry implements ChannelModerationActionEntry {
2
3# The action that was taken.
4action: ModerationAction!
5
6# Timestamp when action was taken.
7createdAt: Time!
8
9# Duration of the chat time in seconds for timeouts.
10durationSeconds: Int
11
12# UUID of the moderation action.
13id: ID!
14
15# The moderator who took the action.
16moderator: User
17
18# Reason for action.
19reason: String!
20
21# The user which the action targets if any.
22target: User
23
24}

link Required by

This element is not required by anyone