MadelineProtoDocs/old_docs/API_docs_v38/constructors/auth_sentCode.md
2018-04-04 19:52:48 +02:00

1.1 KiB

title description image
auth.sentCode auth_sentCode attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: auth.sentCode

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_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'phone_code_hash' => 'string', 'send_call_timeout' => int, 'is_password' => Bool];

PWRTelegram json-encoded version:

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

Or, if you're into Lua:

auth_sentCode={_='auth.sentCode', phone_registered=Bool, phone_code_hash='string', send_call_timeout=int, is_password=Bool}