MadelineProto/docs/TD_docs/constructors/users.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

771 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]];

PWRTelegram json-encoded version:

{"_": "users", "total_count": int, "users": [user]}

Or, if you're into Lua:

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