Class GuildMemberUpdateNicknameEvent

All Implemented Interfaces:
GenericEvent, UpdateEvent<Member,String>

public class GuildMemberUpdateNicknameEvent extends GenericGuildMemberUpdateEvent<String>
Indicates that a Member updated their Guild nickname.

Can be used to retrieve members who change their nickname, the triggering guild, the old nick and the new nick.

Identifier: nick

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

  • Method Details

    • getOldNickname

      @Nullable public String getOldNickname()
      The old nickname
      Returns:
      The old nickname
    • getNewNickname

      @Nullable public String getNewNickname()
      The new nickname
      Returns:
      The new nickname