mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 15:26:54 +01:00
45 lines
685 B
Markdown
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'}
|
|
|
|
```
|
|
|
|
|