Skip to content

docs: make username propriety more findable #493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions twitchio/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class PartialUser:
id: str | int
The user's ID.
name: str | None
The user's name. In most cases, this is provided. There are however, rare cases where it is not.
The user's name. Also known as *username* or *login name*. In most cases, this is provided. There are however, rare cases where it is not.
display_name: str | None
The user's display name in chat. In most cases, this is provided otherwise fallsback to `name`. There are however, rare cases where it is not.
"""
Expand Down Expand Up @@ -3459,7 +3459,7 @@ class User(PartialUser):
id: str
The user's ID.
name: str | None
The user's name. In most cases, this is provided. There are however, rare cases where it is not.
The user's name. Also known as *username* or *login name*. In most cases, this is provided. There are however, rare cases where it is not.
display_name: str
The display name of the user.
type: Literal["admin", "global_mod", "staff", ""]
Expand Down
Loading