Class UserUpdatePrimaryGuildEvent
java.lang.Object
net.dv8tion.jda.api.events.Event
net.dv8tion.jda.api.events.user.GenericUserEvent
net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent<User.PrimaryGuild>
net.dv8tion.jda.api.events.user.update.UserUpdatePrimaryGuildEvent
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<User,
User.PrimaryGuild>
Indicates that the
primary guild
of a User
changed.
Can be used to retrieve the User who changed their primary guild and their previous primary guild object.
Identifier: primary_guild
Requirements
This event requires the GUILD_MEMBERS
intent to be enabled.
createDefault(String)
and
createLight(String)
disable this by default!
Additionally, this event requires the MemberCachePolicy
to cache the updated members. Discord does not specifically tell us about the updates, but merely tells us the
member was updated and gives us the updated member object. In order to fire a specific event like this we
need to have the old member cached to compare against.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionUserUpdatePrimaryGuildEvent
(JDA api, long responseNumber, User user, User.PrimaryGuild oldPrimaryGuild) -
Method Summary
Modifier and TypeMethodDescriptionThe new primary guildThe old primary guildMethods inherited from class net.dv8tion.jda.api.events.user.update.GenericUserUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifier
Methods inherited from class net.dv8tion.jda.api.events.user.GenericUserEvent
getUser
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getRawData, getResponseNumber, toString
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getRawData, getResponseNumber
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
UserUpdatePrimaryGuildEvent
public UserUpdatePrimaryGuildEvent(JDA api, long responseNumber, User user, User.PrimaryGuild oldPrimaryGuild)
-
-
Method Details
-
getOldPrimaryGuild
The old primary guild- Returns:
- The old primary guild
-
getNewPrimaryGuild
The new primary guild- Returns:
- The new primary guild
-