@archastro/sdk
    Preparing search index...

    Interface MessageReaction

    A compact reaction record embedded in a message's reactions array, representing a single user's reaction to a message.

    interface MessageReaction {
        payload?: Record<string, unknown>;
        type: string;
        user?: string;
    }
    Index

    Properties

    Properties

    payload?: Record<string, unknown>

    Type-specific reaction data. For "emoji_reaction" reactions, contains an emoji key with the Unicode emoji string (e.g., "👍").

    type: string

    Reaction type identifier. Currently always "emoji_reaction" for emoji-based reactions.

    user?: string

    Public ID of the user who added the reaction (usr_...).