MadelineProtoDocs/old_docs/API_docs_v18/constructors/auth_sentAppCode.md
2018-04-01 13:24:46 +02:00

1.1 KiB

title description
auth.sentAppCode auth_sentAppCode attributes, type and example

Constructor: auth.sentAppCode

Back to constructors index

Attributes:

Name Type Required
phone_registered Bool Yes
phone_code_hash string Yes
send_call_timeout int Yes
is_password Bool Yes

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}