Users
Users are the Paperless-ngx user accounts. They are read-only from the API perspective - only fetching and iterating is supported.
Model
See pypaperless/models/permissions/users.py for all fields and pypaperless/models/types.py for enum and filter types, and the Paperless-ngx API docs for the upstream schema.
Fetch one
user = await paperless.users(1)
print(user.username) # "admin"
print(user.is_active) # True
print(user.groups) # [2, 5]