c

ackcord.data.raw

RawGuildMember

case class RawGuildMember(user: User, avatar: Option[String], nick: 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.

user

The user of this member.

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RawGuildMember
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RawGuildMember(user: User, avatar: Option[String], nick: Option[String], roles: Seq[RoleId], joinedAt: Option[OffsetDateTime], premiumSince: Option[OffsetDateTime], deaf: Boolean, mute: Boolean, pending: Option[Boolean], communicationDisabledUntil: Option[OffsetDateTime])

    user

    The user of this member.

    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

  1. val avatar: Option[String]
  2. val communicationDisabledUntil: Option[OffsetDateTime]
  3. val deaf: Boolean
  4. val joinedAt: Option[OffsetDateTime]
  5. val mute: Boolean
  6. val nick: Option[String]
  7. val pending: Option[Boolean]
  8. val premiumSince: Option[OffsetDateTime]
  9. def productElementNames: Iterator[String]
    Definition Classes
    Product
  10. val roles: Seq[RoleId]
  11. def toGuildMember(guildId: GuildId): GuildMember

    Convert this to a normal guild member.

  12. val user: User