case class GuildMemberUpdate(guild: GatewayGuild, roles: Seq[Role], user: User, nick: Option[String], joinedAt: Option[OffsetDateTime], premiumSince: Option[OffsetDateTime], deaf: Boolean, mute: Boolean, pending: Boolean, communicationDisabledUntil: Option[OffsetDateTime], cache: CacheState, gatewayInfo: GatewayInfo) extends GuildMessage with Product with Serializable
Sent to the client when a guild member is updated. The fields seen here are all the fields that can change.
- guild
The guild of the guild member.
- roles
Thew new roles for the guild member.
- user
The user of the updated guild member.
- nick
Nick of the user if one was set.
- joinedAt
When the user joined the guild.
- premiumSince
When the user started boosting the guild.
- deaf
If the user is deafened in the guild.
- mute
If the user is muted in the guild.
- pending
If the user has not yet passed the guild's membership screening.
- Source
- APIMessage.scala
- Alphabetic
- By Inheritance
- GuildMemberUpdate
- Serializable
- Product
- Equals
- GuildMessage
- APIMessage
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new GuildMemberUpdate(guild: GatewayGuild, roles: Seq[Role], user: User, nick: Option[String], joinedAt: Option[OffsetDateTime], premiumSince: Option[OffsetDateTime], deaf: Boolean, mute: Boolean, pending: Boolean, communicationDisabledUntil: Option[OffsetDateTime], cache: CacheState, gatewayInfo: GatewayInfo)
- guild
The guild of the guild member.
- roles
Thew new roles for the guild member.
- user
The user of the updated guild member.
- nick
Nick of the user if one was set.
- joinedAt
When the user joined the guild.
- premiumSince
When the user started boosting the guild.
- deaf
If the user is deafened in the guild.
- mute
If the user is muted in the guild.
- pending
If the user has not yet passed the guild's membership screening.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val cache: CacheState
The current state of the cache.
The current state of the cache. Contains both a snapshot of how the cache looks like after this message (the current one), and a snapshot for how the cache looked like before this message.
- Definition Classes
- GuildMemberUpdate → APIMessage
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- val communicationDisabledUntil: Option[OffsetDateTime]
- val deaf: Boolean
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val gatewayInfo: GatewayInfo
Info about the state of the gateway that received this gateway.
Info about the state of the gateway that received this gateway.
- Definition Classes
- GuildMemberUpdate → APIMessage
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- val guild: GatewayGuild
The guild that was acted upon.
The guild that was acted upon.
- Definition Classes
- GuildMemberUpdate → GuildMessage
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val joinedAt: Option[OffsetDateTime]
- val mute: Boolean
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val nick: Option[String]
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- val pending: Boolean
- val premiumSince: Option[OffsetDateTime]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val roles: Seq[Role]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val user: User
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])