1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
auth.sentCode | auth_sentCode attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: auth.sentCode
Attributes:
Name | Type | Required |
---|---|---|
phone_registered | Bool | Optional |
type | auth_SentCodeType | Yes |
phone_code_hash | string | Yes |
next_type | auth_CodeType | Optional |
timeout | int | Optional |
Type: auth_SentCode
Example:
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'type' => auth_SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth_CodeType, 'timeout' => int];
PWRTelegram json-encoded version:
{"_": "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}