MadelineProtoDocs/docs/API_docs/constructors/account_webAuthorizations.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

45 lines
1.0 KiB
Markdown

---
title: account.webAuthorizations
description: account_webAuthorizations attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: account.webAuthorizations
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|authorizations|Array of [WebAuthorization](../types/WebAuthorization.md) | Yes|
|users|Array of [User](../types/User.md) | Yes|
### Type: [account\_WebAuthorizations](../types/account_WebAuthorizations.md)
### Example:
```
$account_webAuthorizations = ['_' => 'account.webAuthorizations', 'authorizations' => [WebAuthorization, WebAuthorization], 'users' => [User, User]];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "account.webAuthorizations", "authorizations": [WebAuthorization], "users": [User]}
```
Or, if you're into Lua:
```
account_webAuthorizations={_='account.webAuthorizations', authorizations={WebAuthorization}, users={User}}
```