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

685 B

title description
apnsDeviceToken Token for APNS

Constructor: apnsDeviceToken

Back to constructors index

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'}