OBJECT

RoomMessage

DEPRECATED A message sent from a user to a room.

link GraphQL Schema definition

1type RoomMessage {
2
3# The text and emoticon content of a message.
4content: RoomMessageContent! @deprecated( reason: "The Rooms product has been sunset" )
5
6# Time the message was deleted or purged. Null if the message is not deleted.
7deletedAt: Time @deprecated( reason: "The Rooms product has been sunset" )
8
9# UUID of the message.
10id: ID! @deprecated( reason: "The Rooms product has been sunset" )
11
12# The room the message was sent in.
13room: Room! @deprecated( reason: "The Rooms product has been sunset" )
14
15# The user that sent the message.
16sender: User! @deprecated( reason: "The Rooms product has been sunset" )
17
18# Time the message was sent.
19sentAt: Time! @deprecated( reason: "The Rooms product has been sunset" )
20
21}