MadelineProtoDocs/old_docs/API_docs_v30/constructors/chatOnlines.md

39 lines
661 B
Markdown
Raw Permalink Normal View History

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