Interface ServerStageVoiceChannelChangeTopicEvent
-
- All Superinterfaces:
ChannelEvent,Event,ServerChannelEvent,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.java.lang.StringgetNewTopic()Gets the new topic of the channel.java.lang.StringgetOldTopic()Gets the old topic of the channel.-
Methods inherited from interface org.javacord.api.event.channel.server.ServerChannelEvent
getServer
-
-
-
-
Method Detail
-
getChannel
ServerStageVoiceChannel getChannel()
Description copied from interface:ChannelEventGets the channel of the event.- Specified by:
getChannelin interfaceChannelEvent- Specified by:
getChannelin interfaceServerChannelEvent- Specified by:
getChannelin interfaceServerVoiceChannelEvent- Specified by:
getChannelin interfaceVoiceChannelEvent- Returns:
- The channel of the event.
-
getNewTopic
java.lang.String getNewTopic()
Gets the new topic of the channel.- Returns:
- The new topic of the channel.
-
getOldTopic
java.lang.String getOldTopic()
Gets the old topic of the channel.- Returns:
- The old topic of the channel.
-
-