MadelineProtoDocs/docs/API_docs/constructors/auth_sentCode.md

1006 B

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
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', 'type' => auth_SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth_CodeType, 'timeout' => int];

Or, if you're into Lua:

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