/// <summary> /// Modifies this store 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 store channel.</returns> /// <exception cref="ArgumentNullException"></exception> /// <exception cref="DiscordHttpApiException"></exception> public Task <DiscordGuildStoreChannel> Modify(GuildStoreChannelOptions options) { return(http.ModifyStoreChannel(Id, options)); }