Interface MessageMentions

interface MessageMentions {
    channels: string[];
    everyone: boolean;
    members: Member[];
    roles: string[];
    users: User[];
}

Properties

channels: string[]

The ids of the channels mentioned in this message.

everyone: boolean

If @everyone/@here is mentioned in this message.

members: Member[]

The members mentioned in this message.

roles: string[]

The ids of the roles mentioned in this message.

users: User[]

The users mentioned in this message.