Class UserUpdatePrimaryGuildEvent

All Implemented Interfaces:
GenericEvent, UpdateEvent<User,User.PrimaryGuild>

public class UserUpdatePrimaryGuildEvent extends GenericUserUpdateEvent<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 Details

  • Constructor Details

    • UserUpdatePrimaryGuildEvent

      public UserUpdatePrimaryGuildEvent(JDA api, long responseNumber, User user, User.PrimaryGuild oldPrimaryGuild)
  • Method Details

    • getOldPrimaryGuild

      @Nullable public User.PrimaryGuild getOldPrimaryGuild()
      The old primary guild
      Returns:
      The old primary guild
    • getNewPrimaryGuild

      @Nullable public User.PrimaryGuild getNewPrimaryGuild()
      The new primary guild
      Returns:
      The new primary guild