Interface StandardGuildChannelManager<T extends StandardGuildChannel, M extends StandardGuildChannelManager<T,M>>

All Superinterfaces:
AuditableRestAction<Void>, ChannelManager<T,M>, ICategorizableChannelManager<T,M>, IPermissionContainerManager<T,M>, IPositionableChannelManager<T,M>, Manager<M>, RestAction<Void>
All Known Subinterfaces:
AudioChannelManager<T,M>, ForumChannelManager, MediaChannelManager, NewsChannelManager, StageChannelManager, StandardGuildMessageChannelManager<T,M>, TextChannelManager, VoiceChannelManager

public interface StandardGuildChannelManager<T extends StandardGuildChannel, M extends StandardGuildChannelManager<T,M>> extends IPermissionContainerManager<T,M>, IPositionableChannelManager<T,M>, ICategorizableChannelManager<T,M>
Manager providing functionality common for all StandardGuildChannels.

Example

manager.setName("help")
       .setParent(categoryChannel)
       .queue();
manager.reset(ChannelManager.PARENT | ChannelManager.NAME)
       .putPermissionOverride(member, 0, Permission.ALL_PERMISSIONS)
       .queue();
See Also: