MadelineProtoDocs/docs/API_docs/constructors/chatOnlines.md

39 lines
661 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: chatOnlines
2019-12-27 17:48:04 +01:00
description: Number of online users in a chat
2018-12-26 02:56:50 +01:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: chatOnlines
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Number of online users in a chat
2018-12-26 02:56:50 +01:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|onlines|[int](../types/int.md) | Yes|Number of online users|
2018-12-26 02:56:50 +01:00
### Type: [ChatOnlines](../types/ChatOnlines.md)
### Example:
```php
$chatOnlines = ['_' => 'chatOnlines', 'onlines' => int];
```
Or, if you're into Lua:
```lua
chatOnlines={_='chatOnlines', onlines=int}
```