Update reginaldCog/messenger_clients/discord_data_models.py

This commit is contained in:
T-BENZIN 2025-08-15 09:33:05 +02:00
parent d2edf0e60d
commit 73bf08843f

View File

@ -37,11 +37,11 @@ class Member:
bot: bool
created_at: datetime
display_name: str # For regular users this is just their global name or their username, but if they have a guild specific nickname then that is returned instead.
global_name: str # The users global nickname, taking precedence over the username in display.
global_name: str # The user's global nickname, taking precedence over the username in display.
id: int
joined_at: datetime
mention: str
name: str # The users username.
name: str # The user's username.
nick: str # The guild specific nickname of the user. Takes precedence over the global name.
roles: list[Role] = field(default_factory=list)