case class PartialRawGuildMember(nick: Option[String], avatar: Option[String], roles: Seq[RoleId], joinedAt: Option[OffsetDateTime], premiumSince: Option[OffsetDateTime], deaf: Boolean, mute: Boolean, pending: Option[Boolean], communicationDisabledUntil: Option[OffsetDateTime]) extends Product with Serializable
Represents a user in a guild, without the user field.
- nick
The nickname of this user in this guild.
- roles
The roles of this user.
- joinedAt
When this user joined the guild.
- premiumSince
When this user boosted the server.
- deaf
If this user is deaf.
- mute
IF this user is mute.
- pending
True if the member hasn't gotten past the guild screening yet
- Source
- rawData.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PartialRawGuildMember
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PartialRawGuildMember(nick: Option[String], avatar: Option[String], roles: Seq[RoleId], joinedAt: Option[OffsetDateTime], premiumSince: Option[OffsetDateTime], deaf: Boolean, mute: Boolean, pending: Option[Boolean], communicationDisabledUntil: Option[OffsetDateTime])
- nick
The nickname of this user in this guild.
- roles
The roles of this user.
- joinedAt
When this user joined the guild.
- premiumSince
When this user boosted the server.
- deaf
If this user is deaf.
- mute
IF this user is mute.
- pending
True if the member hasn't gotten past the guild screening yet
Value Members
- val avatar: Option[String]
- val communicationDisabledUntil: Option[OffsetDateTime]
- val deaf: Boolean
- val joinedAt: Option[OffsetDateTime]
- val mute: Boolean
- val nick: Option[String]
- val pending: Option[Boolean]
- val premiumSince: Option[OffsetDateTime]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val roles: Seq[RoleId]
- def toGuildMember(userId: UserId, guildId: GuildId): GuildMember