Class DiscordJoinRequest
- java.lang.Object
-
- net.runelite.client.discord.events.DiscordJoinRequest
-
public final class DiscordJoinRequest extends Object
Called when another discord user wants to join the game of the logged in user
-
-
Constructor Summary
Constructors Constructor Description DiscordJoinRequest(String userId, String username, String discriminator, String avatar)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAvatar()
The avatar of the user that requests to joinString
getDiscriminator()
The discriminator of the user that requests to joinString
getUserId()
The userId for the user that requests to joinString
getUsername()
The username of the user that requests to joinint
hashCode()
String
toString()
-
-
-
Method Detail
-
getUserId
public String getUserId()
The userId for the user that requests to join
-
getUsername
public String getUsername()
The username of the user that requests to join
-
getDiscriminator
public String getDiscriminator()
The discriminator of the user that requests to join
-
getAvatar
public String getAvatar()
The avatar of the user that requests to join
-
-