1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 21:56:56 +01:00
MadelineProto/docs/TD_docs/constructors/users.md

651 B

title description
users Contains list of users

Constructor: users

Back to constructors index

Contains list of users

Attributes:

Name Type Required Description
total_count int Yes Approximate total count of found users
users Array of user Yes List of users

Type: Users

Example:

$users = ['_' => 'users', 'total_count' => int, 'users' => [user], ];

Or, if you're into Lua:

users={_='users', total_count=int, users={user}, }