Interface ForumChannelManager

All Superinterfaces:
AuditableRestAction<Void>, ChannelManager<ForumChannel, ForumChannelManager>, IAgeRestrictedChannelManager<ForumChannel, ForumChannelManager>, ICategorizableChannelManager<ForumChannel, ForumChannelManager>, IPermissionContainerManager<ForumChannel, ForumChannelManager>, IPositionableChannelManager<ForumChannel, ForumChannelManager>, IPostContainerManager<ForumChannel, ForumChannelManager>, ISlowmodeChannelManager<ForumChannel, ForumChannelManager>, IThreadContainerManager<ForumChannel, ForumChannelManager>, Manager<ForumChannelManager>, RestAction<Void>, StandardGuildChannelManager<ForumChannel, ForumChannelManager>

Manager providing functionality to modify a ForumChannel.

Example

manager.setName("gamer-forum")
 .setSlowmode(10)
 .setTopic("Welcome to the gamer forum!")
 .queue();
manager.reset(ChannelManager.NSFW | ChannelManager.NAME)
 .setName("gamer-forum-nsfw")
 .setNSFW(true)
 .queue();