Contains information about a user not tied to any specific guild.
flowchart LR
user[(user)]
id{{id}}
click id callback "Id of the user."
user --- id
name>name]
click name callback "Name of the user."
user --- name
global_name>global_name]
click global_name callback "Global username. One unique to your account."
user --- global_name
bot{bot}
click bot callback "Whether a user is a bot or not"
user --- bot
display_name>display_name]
click display_name callback "Display name of the user"
user --- display_name
mention>mention]
click mention callback "Mention string for mentioning the user."
user --- mention
avatar_url>avatar_url]
click avatar_url callback "Global avatar of the user"
user --- avatar_url
display_avatar>display_avatar]
click display_avatar callback "Avatar that's displayed on discord."
user --- display_avatar
Id of the user.
Name of the user.
Global username. One unique to your account.
Whether a user is a bot or not
Display name of the user
Mention string for mentioning the user.
Global avatar of the user
Avatar that’s displayed on discord.