Elixir v0.2.1 Nostrum.Struct.Guild.VoiceChannel

Struct representing a Discord voice channel.

Summary

Types

The bitrate of the voice channel

The id of the channel’s guild

The channe’s id

Whether the channel is private

The name of the channel

The list of overwrites

The ordered position of the channel

t()

The type of channel: ‘Text’ or ‘Voice’

The user limit of the voice channel

Types

bitrate()
bitrate() :: integer

The bitrate of the voice channel

guild_id()
guild_id() :: integer

The id of the channel’s guild

id()
id() :: integer

The channe’s id

is_private()
is_private() :: boolean

Whether the channel is private

name()
name() :: String.t

The name of the channel

permission_overwrites()
permission_overwrites() :: [Nostrum.Struct.Overwrite.t]

The list of overwrites

position()
position() :: integer

The ordered position of the channel

t()
t() :: %Nostrum.Struct.Guild.VoiceChannel{bitrate: bitrate, guild_id: guild_id, id: id, is_private: is_private, name: name, permission_overwrites: permission_overwrites, position: position, type: type, user_limit: user_limit}
type()
type() :: String.t

The type of channel: ‘Text’ or ‘Voice’

user_limit()
user_limit() :: integer

The user limit of the voice channel