MadelineProto/docs/TD_docs/constructors/mpnsDeviceToken.md
2017-07-23 16:33:46 +02:00

45 lines
685 B
Markdown

---
title: mpnsDeviceToken
description: Token for MPNS
---
## Constructor: mpnsDeviceToken
[Back to constructors index](index.md)
Token for MPNS
### Attributes:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|token|[string](../types/string.md) | Yes|The token|
### Type: [DeviceToken](../types/DeviceToken.md)
### Example:
```
$mpnsDeviceToken = ['_' => 'mpnsDeviceToken', 'token' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "mpnsDeviceToken", "token": "string"}
```
Or, if you're into Lua:
```
mpnsDeviceToken={_='mpnsDeviceToken', token='string'}
```