Interface ServerStageVoiceChannelChangeTopicEvent
-
- All Superinterfaces:
ChannelEvent,Event,ServerEvent,ServerVoiceChannelEvent,VoiceChannelEvent
public interface ServerStageVoiceChannelChangeTopicEvent extends ServerVoiceChannelEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerStageVoiceChannelgetChannel()Gets the channel of the event.StringgetNewTopic()Gets the new topic of the channel.StringgetOldTopic()Gets the old topic of the channel.-
Methods inherited from interface org.javacord.api.event.server.ServerEvent
getServer
-
-
-
-
Method Detail
-
getChannel
ServerStageVoiceChannel getChannel()
Description copied from interface:ChannelEventGets the channel of the event.- Specified by:
getChannelin interfaceChannelEvent- Specified by:
getChannelin interfaceServerVoiceChannelEvent- Specified by:
getChannelin interfaceVoiceChannelEvent- Returns:
- The channel of the event.
-
getNewTopic
String getNewTopic()
Gets the new topic of the channel.- Returns:
- The new topic of the channel.
-
getOldTopic
String getOldTopic()
Gets the old topic of the channel.- Returns:
- The old topic of the channel.
-
-