45 lines
685 B
Markdown
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'}
|
|
|
|
```
|
|
|
|
|