1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
auth.sentCode | Contains info about a sent verification code. | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: auth.sentCode
Contains info about a sent verification code.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
phone_registered | Bool | Optional | Phone registered? |
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}