Interface ComponentMessageInteractionMetadata

interface ComponentMessageInteractionMetadata {
    authorizingIntegrationOwners: AuthorizingIntegrationOwners;
    id: string;
    interactedMessageID: string;
    originalResponseMessageID?: string;
    type: MESSAGE_COMPONENT;
    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
interactedMessageID: string

The ID of the message that contained interactive component, present only on messages created from component interactions.

originalResponseMessageID?: string

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

user: User

The user that triggered the reaction.