MadelineProtoDocs/old_docs/API_docs_v40/constructors/auth_sentAppCode.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.2 KiB

title description image
auth.sentAppCode Sent app code https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: auth.sentAppCode

Back to constructors index

Sent app code

Attributes:

Name Type Required Description
phone_registered Bool Yes Phone registered?
phone_code_hash string Yes Phone code hash
send_call_timeout int Yes Send call timeout
is_password Bool Yes Is password?

Type: auth_SentCode

Example:

$auth_sentAppCode = ['_' => 'auth.sentAppCode', 'phone_registered' => Bool, 'phone_code_hash' => 'string', 'send_call_timeout' => int, 'is_password' => Bool];

PWRTelegram json-encoded version:

{"_": "auth.sentAppCode", "phone_registered": Bool, "phone_code_hash": "string", "send_call_timeout": int, "is_password": Bool}

Or, if you're into Lua:

auth_sentAppCode={_='auth.sentAppCode', phone_registered=Bool, phone_code_hash='string', send_call_timeout=int, is_password=Bool}