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<OffsetDateTime>
-
- net.dv8tion.jda.api.events.guild.member.update.GuildMemberUpdateBoostTimeEvent
-
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Member,OffsetDateTime>
public class GuildMemberUpdateBoostTimeEvent extends GenericGuildMemberUpdateEvent<OffsetDateTime>
Indicates that aMember
updated theirGuild
boost time.
This event requiresguild subscriptions
to be enabled.
This happens when a member started or stopped boosting a guild.Can be used to retrieve members who boosted, triggering guild.
Identifier:
boost_time
-
-
Field Summary
Fields Modifier and Type Field Description static String
IDENTIFIER
-
Constructor Summary
Constructors Constructor Description GuildMemberUpdateBoostTimeEvent(JDA api, long responseNumber, Member member, OffsetDateTime previous)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OffsetDateTime
getNewTimeBoosted()
The new boost timeOffsetDateTime
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 String IDENTIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
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
-
-