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

Struct representing an Invite Delete event

Link to this section Summary

Types

Channel id of the channel this invite is for.

The unique invite code.

Guild id of the guild this invite is for.

t()

Link to this section Types

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

Channel id of the channel this invite is for.

@type code() :: String.t()

The unique invite code.

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

Guild id of the guild this invite is for.

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