mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 02:26:55 +01:00
682 B
682 B
title | description |
---|---|
apnsDeviceToken | Token for APNS |
Constructor: apnsDeviceToken
Token for APNS
Attributes:
Name | Type | Required | Description |
---|---|---|---|
token | string | Yes | The token |
Type: DeviceToken
Example:
$apnsDeviceToken = ['_' => 'apnsDeviceToken', 'token' => string, ];
PWRTelegram json-encoded version:
{"_":"apnsDeviceToken","token":"string"}
Or, if you're into Lua:
apnsDeviceToken={_='apnsDeviceToken', token=string, }