Package org.javacord.api.interaction
Interface ServerApplicationCommandPermissions
-
public interface ServerApplicationCommandPermissions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetApplicationId()Gets the application ID from this server application command permissions.longgetId()Gets the ID of this server application command permissions.java.util.Set<ApplicationCommandPermissions>getPermissions()Gets the permissions of this server application command permissions.ServergetServer()Gets the server of this server application command permissions.longgetServerId()Gets the server ID of this server application command permissions.
-
-
-
Method Detail
-
getId
long getId()
Gets the ID of this server application command permissions.- Returns:
- The id.
-
getApplicationId
long getApplicationId()
Gets the application ID from this server application command permissions.- Returns:
- The application id.
-
getServerId
long getServerId()
Gets the server ID of this server application command permissions.- Returns:
- The server ID.
-
getServer
Server getServer()
Gets the server of this server application command permissions.- Returns:
- The server.
-
getPermissions
java.util.Set<ApplicationCommandPermissions> getPermissions()
Gets the permissions of this server application command permissions.- Returns:
- The application command permissions.
-
-