Class GuildMemberUpdateTimeOutEvent
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.GuildMemberUpdateTimeOutEvent
- All Implemented Interfaces:
GenericEvent
,UpdateEvent<Member,
OffsetDateTime>
Indicates that a
This event does not fire for automatic time out expiration.
Member
had their time out changed.
This event does not fire for automatic time out expiration.
Can be used to retrieve members who had their time out changed and the triggering guild.
Identifier: timeout_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 Summary
-
Constructor Summary
ConstructorDescriptionGuildMemberUpdateTimeOutEvent
(JDA api, long responseNumber, Member member, OffsetDateTime previous) -
Method Summary
Modifier and TypeMethodDescriptionThe new end of the time outThe old end of the time outMethods inherited from class net.dv8tion.jda.api.events.guild.member.update.GenericGuildMemberUpdateEvent
getEntity, getNewValue, getOldValue, getPropertyIdentifier
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, getRawData, getResponseNumber, toString
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, getRawData, getResponseNumber
Methods inherited from interface net.dv8tion.jda.api.events.UpdateEvent
getEntityType
-
Field Details
-
IDENTIFIER
- See Also:
-
-
Constructor Details
-
GuildMemberUpdateTimeOutEvent
-
-
Method Details
-
getOldTimeOutEnd
The old end of the time out- Returns:
- The old end of the time out
-
getNewTimeOutEnd
The new end of the time out- Returns:
- The new end of the time out
-