1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
userFull | Extended user info | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: userFull
Extended user info
Attributes:
Name | Type | Required | Description |
---|---|---|---|
blocked | Bool | Optional | Whether you have blocked this user |
user | User | Optional | Remaining user info |
about | string | Optional | Bio of the user |
link | contacts.Link | Yes | Link |
profile_photo | Photo | Optional | Profile photo |
notify_settings | PeerNotifySettings | Optional | Notification settings |
bot_info | BotInfo | Optional | For bots, info about the bot (bot commands, etc) |
Type: UserFull
Example:
$userFull = ['_' => 'userFull', 'blocked' => Bool, 'user' => User, 'about' => 'string', 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo];
Or, if you're into Lua:
userFull={_='userFull', blocked=Bool, user=User, about='string', link=contacts.Link, profile_photo=Photo, notify_settings=PeerNotifySettings, bot_info=BotInfo}