BackupReaction

data class BackupReaction(val messageId: String, val emojiReactions: List<BackupEmojiReaction>)

Represents a backup of message reactions for a single message. Each reaction is represented as an emoji plus the list of users who reacted with it. This list-based representation improves JS interop.

Constructors

Link copied to clipboard
constructor(messageId: String, emojiReactions: List<BackupEmojiReaction>)

Properties

Link copied to clipboard

The list of emoji reactions with their respective users.

Link copied to clipboard
val messageId: String

The unique identifier of the message associated with these reactions.