MadelineProtoDocs/old_docs/API_docs_v2/constructors/auth.sentCode.md

1.1 KiB

title description image redirect_from
auth.sentCode Contains info about a sent verification code. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/constructors/auth_sentCode.html

Constructor: auth.sentCode

Back to constructors index

Contains info about a sent verification code.

Attributes:

Name Type Required Description
phone_registered Bool Yes
phone_code_hash string Yes Phone code hash, to be stored and later re-used with auth.signIn
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];

Or, if you're into Lua:

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