mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
30 lines
668 B
Markdown
30 lines
668 B
Markdown
|
---
|
||
|
title: "userStatusOffline"
|
||
|
description: "The user's offline status."
|
||
|
nav_exclude: true
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: userStatusOffline
|
||
|
[Back to constructors index](/API_docs/constructors/index.html)
|
||
|
|
||
|
|
||
|
|
||
|
The user's offline status.
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|was\_online|[int](/API_docs/types/int.html) | Yes|Time the user was last seen online|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [UserStatus](/API_docs/types/UserStatus.html)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$userStatusOffline = ['_' => 'userStatusOffline', 'was_online' => int];
|
||
|
```
|