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

45 lines
685 B
Markdown

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