MadelineProto/old_docs/API_docs_v33/constructors/auth_sentCode.md
2017-07-23 16:11:02 +02:00

1.0 KiB

title description
auth.sentCode auth_sentCode attributes, type and example

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, }