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

Struct representing an Invite Delete event

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()

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()
}