Class GuildMemberUpdateBoostTimeEvent

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

public class GuildMemberUpdateBoostTimeEvent extends GenericGuildMemberUpdateEvent<OffsetDateTime>
Indicates that a Member updated their Guild boost time.
This happens when a member started or stopped boosting a guild.

Can be used to retrieve members who boosted and the triggering guild.

Identifier: boost_time

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

    • GuildMemberUpdateBoostTimeEvent

      public GuildMemberUpdateBoostTimeEvent(@Nonnull JDA api, long responseNumber, @Nonnull Member member, @Nullable OffsetDateTime previous)
  • Method Details

    • getOldTimeBoosted

      @Nullable public OffsetDateTime getOldTimeBoosted()
      The old boost time
      Returns:
      The old boost time
    • getNewTimeBoosted

      @Nullable public OffsetDateTime getNewTimeBoosted()
      The new boost time
      Returns:
      The new boost time