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

861 B

title description
authCodeTypeMessage Code is delivered through private Telegram message, which can be viewed in the other client

Constructor: authCodeTypeMessage

Back to constructors index

Code is delivered through private Telegram message, which can be viewed in the other client

Attributes:

Name Type Required Description
length int Yes Length of the code

Type: AuthCodeType

Example:

$authCodeTypeMessage = ['_' => 'authCodeTypeMessage', 'length' => int];

PWRTelegram json-encoded version:

{"_": "authCodeTypeMessage", "length": int}

Or, if you're into Lua:

authCodeTypeMessage={_='authCodeTypeMessage', length=int}