OBJECT

TargetedModActionDetails

TargetedModerationAction is a ModLogs entry of a chat ban,timeout, or unban.

link GraphQL Schema definition

1type TargetedModActionDetails {
2
3# Timestamp when user was banned/timed-out.
4bannedAt: Time
5
6# Duration of the chat timeout (in seconds).
7durationSeconds: Int
8
9# Timestamp when the chat timeout expires.
10expiresAt: Time
11
12# Reason of the action.
13reason: String
14
15}