mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 06:56:55 +01:00
44 lines
633 B
Markdown
44 lines
633 B
Markdown
---
|
|
title: authStateLoggingOut
|
|
description: User is currently logging out
|
|
---
|
|
## Constructor: authStateLoggingOut
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
User is currently logging out
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|
|
|
|
|
|
### Type: [AuthState](../types/AuthState.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$authStateLoggingOut = ['_' => 'authStateLoggingOut', ];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_":"authStateLoggingOut"}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
authStateLoggingOut={_='authStateLoggingOut', }
|
|
|
|
```
|
|
|
|
|