Interface StageInstanceManager

All Superinterfaces:
AuditableRestAction<Void>, Manager<StageInstanceManager>, RestAction<Void>

public interface StageInstanceManager extends Manager<StageInstanceManager>
Manager providing functionality to update one or more fields for a StageInstance.

Example


 manager.setTopic("LMAO JOIN FOR FREE NITRO")
        .setPrivacyLevel(PrivacyLevel.PUBLIC)
        .queue();
 manager.reset(ChannelManager.TOPIC | ChannelManager.PRIVACY_LEVEL)
        .setTopic("Talent Show | WINNER GETS FREE NITRO")
        .setPrivacyLevel(PrivacyLevel.GUILD_ONLY)
        .queue();
 
See Also: