View Source Nostrum.Struct.Event.MessageDelete (Nostrum v0.9.0)

Struct representing a Message Delete event

Summary

Types

Channel id of the deleted message

Guild id of the deleted message

Id of the deleted message

t()

Types

@type channel_id() :: Nostrum.Struct.Channel.id()

Channel id of the deleted message

@type guild_id() :: Nostrum.Struct.Guild.id() | nil

Guild id of the deleted message

nil if a non-guild message was deleted.

@type id() :: Nostrum.Struct.Message.id()

Id of the deleted message

@type t() :: %Nostrum.Struct.Event.MessageDelete{
  channel_id: channel_id(),
  guild_id: guild_id(),
  id: id()
}