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

676 B

title description
gcmDeviceToken Token for GCM

Constructor: gcmDeviceToken

Back to constructors index

Token for GCM

Attributes:

Name Type Required Description
token string Yes The token

Type: DeviceToken

Example:

$gcmDeviceToken = ['_' => 'gcmDeviceToken', 'token' => 'string'];

PWRTelegram json-encoded version:

{"_": "gcmDeviceToken", "token": "string"}

Or, if you're into Lua:

gcmDeviceToken={_='gcmDeviceToken', token='string'}