OBJECT
RoomPermissions
DEPRECATED Represents the permissions a user has in a room.
link GraphQL Schema definition
1 type RoomPermissions { 2 3 # Whether the user can moderate the room. 4 : Boolean! @deprecated( reason: "The Rooms product has been sunset" ) 5 6 # Whether the user can read messages in the room. 7 : Boolean! @deprecated( reason: "The Rooms product has been sunset" ) 8 9 # Whether the user can send messages in the room. 10 : Boolean! @deprecated( reason: "The Rooms product has been sunset" ) 11 12 }