MadelineProto/docs/TD_docs/constructors/simplePushDeviceToken.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

45 lines
741 B
Markdown

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