Package org.javacord.api.event.server
Interface ServerChangeDefaultMessageNotificationLevelEvent
-
- All Superinterfaces:
Event,ServerEvent
public interface ServerChangeDefaultMessageNotificationLevelEvent extends ServerEvent
A server change default message notification level event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DefaultMessageNotificationLevelgetNewDefaultMessageNotificationLevel()Gets the new default message notification level of the server.DefaultMessageNotificationLevelgetOldDefaultMessageNotificationLevel()Gets the old default message notification level of the server.-
Methods inherited from interface org.javacord.api.event.server.ServerEvent
getServer
-
-
-
-
Method Detail
-
getOldDefaultMessageNotificationLevel
DefaultMessageNotificationLevel getOldDefaultMessageNotificationLevel()
Gets the old default message notification level of the server.- Returns:
- The old default message notification level of the server.
-
getNewDefaultMessageNotificationLevel
DefaultMessageNotificationLevel getNewDefaultMessageNotificationLevel()
Gets the new default message notification level of the server.- Returns:
- The new default message notification level of the server.
-
-