MadelineProto/docs/TD_docs/constructors/users.md

46 lines
771 B
Markdown
Raw Normal View History

---
title: users
description: Contains list of users
---
## Constructor: users
[Back to constructors index](index.md)
Contains list of users
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|total\_count|[int](../types/int.md) | Yes|Approximate total count of found users|
|users|Array of [user](../constructors/user.md) | Yes|List of users|
### Type: [Users](../types/Users.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$users = ['_' => 'users', 'total_count' => int, 'users' => [user]];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "users", "total_count": int, "users": [user]}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
users={_='users', total_count=int, users={user}}
```