MadelineProto/docs/TD_docs/constructors/apnsDeviceToken.md

45 lines
682 B
Markdown
Raw Normal View History

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