OBJECT

ChannelModerationActionOnChatMessageEntry

Moderation Actions relating to chat messages. ex: delete message.

link GraphQL Schema definition

1type ChannelModerationActionOnChatMessageEntry 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# The message contents of the message deleted.
13messageBody: String
14
15# The id of the message deleted.
16messageID: ID
17
18# The sender of the message.
19messageSender: User
20
21# The moderator who took the action.
22moderator: User
23
24}

link Required by

This element is not required by anyone