2017-03-11 19:54:51 +01:00
|
|
|
---
|
|
|
|
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, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"mpnsDeviceToken","token":"string"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-11 19:54:51 +01:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
mpnsDeviceToken={_='mpnsDeviceToken', token=string, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|