1.1 KiB
1.1 KiB
title | description |
---|---|
auth.sentAppCode | auth_sentAppCode attributes, type and example |
Constructor: auth.sentAppCode
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_sentAppCode = ['_' => 'auth.sentAppCode', 'phone_registered' => Bool, 'phone_code_hash' => 'string', 'send_call_timeout' => int, 'is_password' => Bool];
PWRTelegram json-encoded version:
{"_": "auth.sentAppCode", "phone_registered": Bool, "phone_code_hash": "string", "send_call_timeout": int, "is_password": Bool}
Or, if you're into Lua:
auth_sentAppCode={_='auth.sentAppCode', phone_registered=Bool, phone_code_hash='string', send_call_timeout=int, is_password=Bool}