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

    Interface UserCommandInteractionData

    interface UserCommandInteractionData {
        guild_id?: `${bigint}`;
        id?: `${bigint}`;
        name: string;
        resolved: {
            members?: { [user_id: `${bigint}`]: PartialMember };
            users: { [user_id: `${bigint}`]: UserResponse };
        };
        target_id: `${bigint}`;
        type: USER;
    }

    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: {
        members?: { [user_id: `${bigint}`]: PartialMember };
        users: { [user_id: `${bigint}`]: UserResponse };
    }

    Resolved users and members for the target user.

    target_id: `${bigint}`

    ID of the user targeted by the user command.

    type: USER

    Type of the invoked command.