@typed-discord/interactions
    Preparing search index...

    Interface MessageCommandInteractionData

    interface MessageCommandInteractionData {
        guild_id?: `${bigint}`;
        id?: `${bigint}`;
        name: string;
        resolved: { messages: { [message_id: `${bigint}`]: MessageResponse } };
        target_id: `${bigint}`;
        type: MESSAGE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    guild_id?: `${bigint}`

    ID of the guild the command is registered to.

    id?: `${bigint}`

    Application command ID of the invoked command.

    name: string

    Name of the invoked command.

    resolved: { messages: { [message_id: `${bigint}`]: MessageResponse } }

    Resolved messages for the target message.

    target_id: `${bigint}`

    ID of the message targeted by the message command.

    type: MESSAGE

    Type of the invoked command.