View Source Nostrum.Struct.Event.MessageReactionRemove (Nostrum v0.8.0)

Sent when a user removes a reaction from a message

Link to this section Summary

Types

ID of the channel in which the reaction was created

Partial emoji object that was removed

ID of the guild on which the message lives, if applicable

ID of the message to which the reaction was attached

t()

Event sent when a user removes a reaction from a message

Author of the reaction

Link to this section Types

Link to this type

channel_id()

View Source (since 0.5.0)
@type channel_id() :: Nostrum.Struct.Channel.id()

ID of the channel in which the reaction was created

@type emoji() :: Nostrum.Struct.Emoji.t() | nil

Partial emoji object that was removed

Link to this type

guild_id()

View Source (since 0.5.0)
@type guild_id() :: Nostrum.Struct.Guild.id() | nil

ID of the guild on which the message lives, if applicable

Link to this type

message_id()

View Source (since 0.5.0)
@type message_id() :: Nostrum.Struct.Message.id()

ID of the message to which the reaction was attached

@type t() :: %Nostrum.Struct.Event.MessageReactionRemove{
  channel_id: channel_id(),
  emoji: emoji(),
  guild_id: guild_id(),
  message_id: message_id(),
  user_id: user_id()
}

Event sent when a user removes a reaction from a message

Link to this type

user_id()

View Source (since 0.5.0)
@type user_id() :: Nostrum.Struct.User.id()

Author of the reaction