/// <summary> /// Modifies this voice channel's settings. /// <para>Requires <see cref="DiscordPermission.ManageChannels"/>.</para> /// </summary> /// <param name="options">A set of options to modify the channel with</param> /// <returns>Returns the updated voice channel.</returns> /// <exception cref="ArgumentNullException"></exception> /// <exception cref="DiscordHttpApiException"></exception> public Task <DiscordGuildVoiceChannel> Modify(GuildVoiceChannelOptions options) { return(http.ModifyVoiceChannel(Id, options)); }