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

1.5 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 Optional
type auth.SentCodeType Yes Phone code type
phone_code_hash string Yes Phone code hash, to be stored and later re-used with auth.signIn
next_type auth.CodeType Optional Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use auth.resendCode
timeout int Optional Timeout for reception of the phone code

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}