4baac3178e
Add PHP, Lua language tag to Code area
45 lines
791 B
Markdown
45 lines
791 B
Markdown
---
|
|
title: userStatusOnline
|
|
description: User is online
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: userStatusOnline
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
User is online
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|---------------|----------|-------------|
|
|
|expires|[int](../types/int.md) | Yes|Unix time when user's online status will expire|
|
|
|
|
|
|
|
|
### Type: [UserStatus](../types/UserStatus.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```php
|
|
$userStatusOnline = ['_' => 'userStatusOnline', 'expires' => int];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "userStatusOnline", "expires": int}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
userStatusOnline={_='userStatusOnline', expires=int}
|
|
|
|
```
|
|
|
|
|