MadelineProtoDocs/docs/API_docs/constructors/chatOnlines.md

45 lines
714 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: chatOnlines
description: Chat onlines
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: chatOnlines
[Back to constructors index](index.md)
Chat onlines
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|onlines|[int](../types/int.md) | Yes|Onlines|
### Type: [ChatOnlines](../types/ChatOnlines.md)
### Example:
```php
$chatOnlines = ['_' => 'chatOnlines', 'onlines' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "chatOnlines", "onlines": int}
```
Or, if you're into Lua:
```lua
chatOnlines={_='chatOnlines', onlines=int}
```