Class UserUpdateAvatarEvent

  • All Implemented Interfaces:
    GenericEvent, UpdateEvent<User,​java.lang.String>

    public class UserUpdateAvatarEvent
    extends GenericUserUpdateEvent<java.lang.String>
    Indicates that the Avatar of a User changed.

    Can be used to retrieve the User who changed their avatar and their previous Avatar ID/URL.

    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.

    • Constructor Detail

      • UserUpdateAvatarEvent

        public UserUpdateAvatarEvent​(@Nonnull
                                     JDA api,
                                     long responseNumber,
                                     @Nonnull
                                     User user,
                                     @Nullable
                                     java.lang.String oldAvatar)
    • Method Detail

      • getOldAvatarId

        @Nullable
        public java.lang.String getOldAvatarId()
        The previous avatar id
        Returns:
        The previous avatar id
      • getOldAvatarUrl

        @Nullable
        public java.lang.String getOldAvatarUrl()
        The previous avatar url
        Returns:
        The previous avatar url
      • getNewAvatarId

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

        @Nullable
        public java.lang.String getNewAvatarUrl()
        The url of the new avatar
        Returns:
        The url of the new avatar