Class ExtendedUser

Represents the currently authenticated user.

Hierarchy (view full)

Constructors

Properties

accentColor?: null | number

The user's banner color. If this member was received via the gateway, this will never be present.

avatar: null | string

The user's avatar hash.

avatarDecoration?: null | string

The hash of this user's avatar decoration.

Deprecated

Use User#avatarDecorationData.asset instead. This will be removed in 1.12.0.

avatarDecorationData: null | AvatarDecorationData

The data for this user's avatar decoration.

banner?: null | string

The user's banner hash. If this member was received via the gateway, this will never be present.

bot: boolean

If this user is a bot.

clan: null | Clan

The primary clan this user is in.

discriminator: string

The 4 digits after this user's username, if they have not been migrated. If migrated, this will be a single "0".

email: null | string

The user's email. (always null for bots)

flags: number

The flags of the user.

globalName: null | string

The user's display name, if set.

id: string
locale?: string

The locale of the user

mfaEnabled: boolean

If the user has mfa enabled on their account

publicFlags: number

The user's public flags.

system: boolean

If this user is an official discord system user.

username: string

The user's username.

verified: boolean

If this user's email is verified. (always true for bots)

Accessors

  • get defaultAvatar(): number
  • The default avatar value of this user.

    Returns number

  • get isMigrated(): boolean
  • If this user has migrated to the new username system.

    Returns boolean

  • get mention(): string
  • A string that will mention this user.

    Returns string

  • get tag(): string
  • This user's unique username, if migrated, else a combination of the user's username and discriminator.

    Returns string

Methods

  • The url of this user's avatar decoration. This will always be a png. Discord does not combine the decoration and their current avatar for you. This is ONLY the decoration.

    Parameters

    • Optional size: number

      The dimensions of the image.

    Returns null | string

  • The url of this user's avatar (or default avatar, if they have not set an avatar).

    Parameters

    • Optional format: "jpg" | "jpeg" | "png" | "webp" | "gif"

      The format the url should be.

    • Optional size: number

      The dimensions of the image.

    Returns string

  • The url of this user's banner.

    Parameters

    • Optional format: "jpg" | "jpeg" | "png" | "webp" | "gif"

      The format the url should be.

    • Optional size: number

      The dimensions of the image.

    Returns null | string