1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
auth.sentCode | Sent code | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: auth.sentCode
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 |
terms_of_service | help_TermsOfService | Optional | Terms of service |
Type: auth_SentCode
Example:
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth_CodeType, 'timeout' => int, 'terms_of_service' => help_TermsOfService];
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, terms_of_service=help_TermsOfService}