1.6 KiB
1.6 KiB
title | description | image |
---|---|---|
userFull | User full | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: userFull
User full
Attributes:
Name | Type | Required | Description |
---|---|---|---|
blocked | Bool | Optional | Blocked? |
phone_calls_available | Bool | Optional | Phone calls available? |
phone_calls_private | Bool | Optional | Phone calls private? |
user | User | Optional | User |
about | string | Optional | About |
link | contacts_Link | Yes | Link |
profile_photo | Photo | Optional | Profile photo |
notify_settings | PeerNotifySettings | Optional | Notify settings |
bot_info | BotInfo | Optional | Bot info |
common_chats_count | int | Yes | Common chats count |
Type: UserFull
Example:
$userFull = ['_' => 'userFull', 'blocked' => Bool, 'phone_calls_available' => Bool, 'phone_calls_private' => Bool, 'user' => User, 'about' => 'string', 'link' => contacts_Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo, 'common_chats_count' => int];
Or, if you're into Lua:
userFull={_='userFull', blocked=Bool, phone_calls_available=Bool, phone_calls_private=Bool, user=User, about='string', link=contacts_Link, profile_photo=Photo, notify_settings=PeerNotifySettings, bot_info=BotInfo, common_chats_count=int}