1.0 KiB
1.0 KiB
title | description |
---|---|
auth.sentCode | auth_sentCode attributes, type and example |
Constructor: auth.sentCode
Attributes:
Name | Type | Required |
---|---|---|
phone_registered | Bool | Yes |
phone_code_hash | string | Yes |
send_call_timeout | int | Yes |
is_password | Bool | Yes |
Type: auth_SentCode
Example:
$auth_sentCode = ['_' => 'auth.sentCode', 'phone_registered' => Bool, 'phone_code_hash' => 'string', 'send_call_timeout' => int, 'is_password' => Bool];
PWRTelegram json-encoded version:
{"_": "auth.sentCode", "phone_registered": Bool, "phone_code_hash": "string", "send_call_timeout": int, "is_password": Bool}
Or, if you're into Lua:
auth_sentCode={_='auth.sentCode', phone_registered=Bool, phone_code_hash='string', send_call_timeout=int, is_password=Bool}