MadelineProto/docs/API_docs/constructors/auth_authorization.md

37 lines
661 B
Markdown
Raw Normal View History

2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
title: auth.authorization
2016-12-20 13:32:11 +01:00
description: auth_authorization attributes, type and example
2016-12-20 13:15:22 +01:00
---
2017-01-19 23:02:27 +01:00
## Constructor: auth.authorization
2016-12-20 13:15:22 +01:00
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|tmp\_sessions|[int](../types/int.md) | Optional|
|user|[User](../types/User.md) | Yes|
2016-12-19 18:56:05 +01:00
### Type: [auth\_Authorization](../types/auth_Authorization.md)
### Example:
```
2017-01-19 23:02:27 +01:00
$auth_authorization = ['_' => 'auth.authorization', 'tmp_sessions' => int, 'user' => User, ];
```
Or, if you're into Lua:
```
auth_authorization={_='auth.authorization', tmp_sessions=int, user=User, }
```