Package org.javacord.api.event.server
Interface ServerChangeDiscoverySplashEvent
-
- All Superinterfaces:
Event,ServerEvent
public interface ServerChangeDiscoverySplashEvent extends ServerEvent
A server change discovery splash event.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<Icon>getNewDiscoverySplash()Gets the new discovery splash of the server.java.util.Optional<Icon>getOldDiscoverySplash()Gets the old discovery splash of the server.-
Methods inherited from interface org.javacord.api.event.server.ServerEvent
getServer
-
-
-
-
Method Detail
-
getOldDiscoverySplash
java.util.Optional<Icon> getOldDiscoverySplash()
Gets the old discovery splash of the server.- Returns:
- The old discovery splash of the server.
-
getNewDiscoverySplash
java.util.Optional<Icon> getNewDiscoverySplash()
Gets the new discovery splash of the server.- Returns:
- The new discovery splash of the server.
-
-