OBJECT
ChannelModerationActionOnUserEntry
Moderation Actions relating to a user. ex: ban, unban, timeout, untimeout, mod, unmod, vip, unvip.
link GraphQL Schema definition
1 type ChannelModerationActionOnUserEntry implements ChannelModerationActionEntry { 2 3 # The action that was taken. 4 : ModerationAction! 5 6 # Timestamp when action was taken. 7 : Time! 8 9 # Duration of the chat time in seconds for timeouts. 10 : Int 11 12 # UUID of the moderation action. 13 : ID! 14 15 # The moderator who took the action. 16 : User 17 18 # Reason for action. 19 : String! 20 21 # The user which the action targets if any. 22 : User 23 24 }
link Required by
This element is not required by anyone