Class GuildMemberUpdateAvatarEvent

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

public class GuildMemberUpdateAvatarEvent extends GenericGuildMemberUpdateEvent<String>
Indicates that a Member updated their Guild avatar.

Can be used to retrieve members who change their per guild avatar, the triggering guild, the old avatar id and the new avatar id.

Identifier: avatar

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

    • getOldAvatarId

      @Nullable public String getOldAvatarId()
      The old avatar id
      Returns:
      The old avatar id
    • getOldAvatarUrl

      @Nullable public String getOldAvatarUrl()
      The previous avatar url
      Returns:
      The previous avatar url
    • getOldAvatar

      @Nullable public ImageProxy getOldAvatar()
      Returns an ImageProxy for this member's old avatar.

      Note: the old avatar may not always be downloadable as it might have been removed from Discord.

      Returns:
      Possibly-null ImageProxy of this member's old avatar
      See Also:
    • getNewAvatarId

      @Nullable public String getNewAvatarId()
      The new avatar id
      Returns:
      The new avatar id
    • getNewAvatarUrl

      @Nullable public String getNewAvatarUrl()
      The url of the new avatar
      Returns:
      The url of the new avatar
    • getNewAvatar

      @Nullable public ImageProxy getNewAvatar()
      Returns an ImageProxy for this member's new avatar.
      Returns:
      Possibly-null ImageProxy of this member's new avatar
      See Also: