45 lines
714 B
Markdown
45 lines
714 B
Markdown
|
---
|
||
|
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}
|
||
|
|
||
|
```
|
||
|
|
||
|
|