37 lines
541 B
Markdown
37 lines
541 B
Markdown
|
---
|
||
|
title: authStateOk
|
||
|
description: User is successfully authorized. TDLib can answer queries
|
||
|
---
|
||
|
## Constructor: authStateOk
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
User is successfully authorized. TDLib can answer queries
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|:-------------:|:--------:|------------:|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [AuthState](../types/AuthState.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$authStateOk = ['_' => 'authStateOk', ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
authStateOk={_='authStateOk', }
|
||
|
|
||
|
```
|
||
|
|
||
|
|