OBJECT

RoomPermissions

DEPRECATED Represents the permissions a user has in a room.

link GraphQL Schema definition

1type RoomPermissions {
2
3# Whether the user can moderate the room.
4moderate: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
5
6# Whether the user can read messages in the room.
7readMessages: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
8
9# Whether the user can send messages in the room.
10sendMessages: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
11
12}