771 B
771 B
title | description |
---|---|
users | Contains list of users |
Constructor: users
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}}