Class GuildMemberUpdateBoostTimeEvent

  • All Implemented Interfaces:
    GenericEvent, UpdateEvent<Member,​java.time.OffsetDateTime>

    public class GuildMemberUpdateBoostTimeEvent
    extends GenericGuildMemberUpdateEvent<java.time.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, 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.

    • Constructor Detail

      • GuildMemberUpdateBoostTimeEvent

        public GuildMemberUpdateBoostTimeEvent​(@Nonnull
                                               JDA api,
                                               long responseNumber,
                                               @Nonnull
                                               Member member,
                                               @Nullable
                                               java.time.OffsetDateTime previous)
    • Method Detail

      • getOldTimeBoosted

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

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