Interface ApplicationCommandMessageInteractionMetadata

interface ApplicationCommandMessageInteractionMetadata {
    authorizingIntegrationOwners: AuthorizingIntegrationOwners;
    id: string;
    name: string;
    originalResponseMessageID?: string;
    targetMessageID?: string;
    targetUser?: User;
    type: APPLICATION_COMMAND;
    user: User;
}

Hierarchy

Properties

authorizingIntegrationOwners: AuthorizingIntegrationOwners

Details about the authorizing user or server for the installation(s) relevant to the interaction. See Discord's docs for more information.

id: string
name: string

Name of the command, including subcommands and subcommand groups, present only on messages created from application command interactions.

originalResponseMessageID?: string

The ID of the original response message, present only on follow-up messages.

targetMessageID?: string

The message the command was run on, present only on messages created from application command interactions.

targetUser?: User

The user the command was run on, present only on messages created from application command interactions.

user: User

The user that triggered the reaction.