MadelineProto/old_docs/API_docs_v42/constructors/updateNewAuthorization.md

46 lines
1005 B
Markdown
Raw Normal View History

---
title: updateNewAuthorization
description: updateNewAuthorization attributes, type and example
---
## Constructor: updateNewAuthorization
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
|auth\_key\_id|[long](../types/long.md) | Yes|
|date|[int](../types/int.md) | Yes|
|device|[string](../types/string.md) | Yes|
|location|[string](../types/string.md) | Yes|
### Type: [Update](../types/Update.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$updateNewAuthorization = ['_' => 'updateNewAuthorization', 'auth_key_id' => long, 'date' => int, 'device' => 'string', 'location' => 'string'];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "updateNewAuthorization", "auth_key_id": long, "date": int, "device": "string", "location": "string"}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
updateNewAuthorization={_='updateNewAuthorization', auth_key_id=long, date=int, device='string', location='string'}
```