Nostrum.Voice.get_channel_id
You're seeing just the function
get_channel_id
, go back to Nostrum.Voice module for more information.
Specs
get_channel_id(Nostrum.Struct.Guild.id()) :: Nostrum.Struct.Channel.id()
Gets the id of the voice channel that the bot is connected to.
Parameters
guild_id
- ID of guild that the resultant channel belongs to.
Returns the channel_id
for the channel the bot is connected to, otherwise nil
.
Examples
iex> Nostrum.Voice.join_channel(123456789, 420691337)
iex> Nostrum.Voice.get_channel(123456789)
420691337
iex> Nostrum.Voice.leave_channel(123456789)
iex> Nostrum.Voice.get_channel(123456789)
nil