MadelineProtoDocs/old_docs/API_docs_v73/constructors/auth_sentCode.md

1.1 KiB

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

Constructor: auth.sentCode

Back to constructors index

Sent code

Attributes:

Name Type Required Description
phone_registered Bool Optional Phone registered?
type auth_SentCodeType Yes Type
phone_code_hash string Yes Phone code hash
next_type auth_CodeType Optional Next type
timeout int Optional Timeout

Type: auth_SentCode

Example:

$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth_CodeType, 'timeout' => int];

Or, if you're into Lua:

auth_sentCode={_='auth.sentCode', phone_registered=Bool, type=auth_SentCodeType, phone_code_hash='string', next_type=auth_CodeType, timeout=int}