Class GuildMemberUpdateBoostTimeEvent
- java.lang.Object
-
- net.dv8tion.jda.api.events.Event
-
- net.dv8tion.jda.api.events.guild.GenericGuildEvent
-
- net.dv8tion.jda.api.events.guild.member.GenericGuildMemberEvent
-
- net.dv8tion.jda.api.events.guild.member.update.GenericGuildMemberUpdateEvent<java.time.OffsetDateTime>
-
- net.dv8tion.jda.api.events.guild.member.update.GuildMemberUpdateBoostTimeEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Member,java.time.OffsetDateTime>
public class GuildMemberUpdateBoostTimeEvent extends GenericGuildMemberUpdateEvent<java.time.OffsetDateTime>
Indicates that aMember
updated theirGuild
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)
andcreateLight(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 Summary
Fields Modifier and Type Field Description static java.lang.String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description GuildMemberUpdateBoostTimeEvent(JDA api, long responseNumber, Member member, java.time.OffsetDateTime previous)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.time.OffsetDateTime
getNewTimeBoosted()
The new boost timejava.time.OffsetDateTime
getOldTimeBoosted()
The old boost time-
Methods inherited from class net.dv8tion.jda.api.events.guild.member.update.GenericGuildMemberUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifier, toString
-
Methods inherited from class net.dv8tion.jda.api.events.guild.member.GenericGuildMemberEvent
getMember, getUser
-
Methods inherited from class net.dv8tion.jda.api.events.guild.GenericGuildEvent
getGuild
-
Methods inherited from class net.dv8tion.jda.api.events.Event
getJDA, getResponseNumber
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.dv8tion.jda.api.events.GenericEvent
getJDA, getResponseNumber
-
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
-
-
-
Field Detail
-
IDENTIFIER
public static final java.lang.String IDENTIFIER
- See Also:
- Constant Field Values
-
-