Link Search Menu Expand Document

Constructor: auth.sentCode

Back to constructors index

Contains info about a sent verification code.

Attributes:

NameTypeRequiredDescription
typeauth.SentCodeTypeYesPhone code type
phone_code_hashstringYesPhone code hash, to be stored and later re-used with auth.signIn
next_typeauth.CodeTypeOptionalPhone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use auth.resendCode
timeoutintOptionalTimeout for reception of the phone code

Type: auth.SentCode

Example:

$auth_sentCode = ['_' => 'auth.sentCode', 'type' => auth.SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth.CodeType, 'timeout' => int];