Packages

case class User(id: UserId, username: String, discriminator: String, avatar: Option[String], bot: Option[Boolean], system: Option[Boolean], mfaEnabled: Option[Boolean], banner: Option[String], accentColor: Option[Int], locale: Option[String], verified: Option[Boolean], email: Option[String], flags: Option[UserFlags], premiumType: Option[PremiumType], publicFlags: Option[UserFlags]) extends Author[User] with UserOrRole with Product with Serializable

A Discord user.

id

The id of the user.

username

The name of the user.

discriminator

The discriminator for the user. Those four last digits when clicking in a users name.

avatar

The users avatar hash.

bot

If this user belongs to a OAuth2 application.

system

If the user is part of Discord's urgent messaging system.

mfaEnabled

If this user has two factor authentication enabled.

banner

The user's banner image hash.

accentColor

The user's banner color as an RGB int.

locale

The user's chosen language.

verified

If this user email is verified. Requires the email OAuth scope.

email

The users email. Requires the email OAuth scope.

flags

The flags on a user's account.

premiumType

The type of nitro the account has.

publicFlags

The public flags on a user's account.

Source
message.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. User
  2. Serializable
  3. Product
  4. Equals
  5. UserOrRole
  6. Author
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new User(id: UserId, username: String, discriminator: String, avatar: Option[String], bot: Option[Boolean], system: Option[Boolean], mfaEnabled: Option[Boolean], banner: Option[String], accentColor: Option[Int], locale: Option[String], verified: Option[Boolean], email: Option[String], flags: Option[UserFlags], premiumType: Option[PremiumType], publicFlags: Option[UserFlags])

    id

    The id of the user.

    username

    The name of the user.

    discriminator

    The discriminator for the user. Those four last digits when clicking in a users name.

    avatar

    The users avatar hash.

    bot

    If this user belongs to a OAuth2 application.

    system

    If the user is part of Discord's urgent messaging system.

    mfaEnabled

    If this user has two factor authentication enabled.

    banner

    The user's banner image hash.

    accentColor

    The user's banner color as an RGB int.

    locale

    The user's chosen language.

    verified

    If this user email is verified. Requires the email OAuth scope.

    email

    The users email. Requires the email OAuth scope.

    flags

    The flags on a user's account.

    premiumType

    The type of nitro the account has.

    publicFlags

    The public flags on a user's account.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val accentColor: Option[Int]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val avatar: Option[String]
  7. val banner: Option[String]
  8. val bot: Option[Boolean]
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. val discriminator: String

    The discriminator of the author.

    The discriminator of the author.

    Definition Classes
    UserAuthor
  11. val email: Option[String]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. val flags: Option[UserFlags]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. val id: UserId

    The id for this author.

    The id for this author.

    Definition Classes
    UserAuthor
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def isUser: Boolean

    If this author is not a webhook.

    If this author is not a webhook.

    Definition Classes
    UserAuthor
  18. val locale: Option[String]
  19. def mention: String

    Mention this user.

  20. def mentionNick: String

    Mention this user with their nickname.

  21. val mfaEnabled: Option[Boolean]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  25. val premiumType: Option[PremiumType]
  26. def productElementNames: Iterator[String]
    Definition Classes
    Product
  27. val publicFlags: Option[UserFlags]
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. val system: Option[Boolean]
  30. val username: String

    The name of the author.

    The name of the author.

    Definition Classes
    UserAuthor
  31. val verified: Option[Boolean]
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from UserOrRole

Inherited from Author[User]

Inherited from AnyRef

Inherited from Any

Ungrouped