OBJECT

ChatRoomBanStatus

link GraphQL Schema definition

1type ChatRoomBanStatus {
2
3# The user being banned of this chat.
4bannedUser: User
5
6# The time the ban was imposed.
7createdAt: Time!
8
9# The time at which the ban will automatically expire.
10expiresAt: Time
11
12# The time in ms at which the ban will expire.
13expiresInMs: Int
14
15# Conveys if the ban is permanent.
16isPermanent: Boolean!
17
18# The moderator that carried out the action.
19moderator: User
20
21# The reason the user was banned.
22reason: String
23
24# The entity representing the users channel or chat room.
25roomOwner: User
26
27}