OBJECT

ChannelBannedUser

ChannelBannedUser is an object that defines metadata about a channel ban.

link GraphQL Schema definition

1type ChannelBannedUser {
2
3# When the ban was created.
4bannedAt: Time!
5
6# Representation of the banned user.
7bannedUser: User
8
9# Representation of the mod that banned the user.
10modUser: User
11
12}