1.2 KiB
1.2 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 |
---|---|---|---|
user | User | Optional | Remaining user info |
link | contacts.Link | Yes | |
profile_photo | Photo | Optional | Profile photo |
notify_settings | PeerNotifySettings | Optional | Notification settings |
blocked | Bool | Yes | |
bot_info | BotInfo | Optional | For bots, info about the bot (bot commands, etc) |
Type: UserFull
Example:
$userFull = ['_' => 'userFull', 'user' => User, 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'blocked' => Bool, 'bot_info' => BotInfo];
Or, if you're into Lua:
userFull={_='userFull', user=User, link=contacts.Link, profile_photo=Photo, notify_settings=PeerNotifySettings, blocked=Bool, bot_info=BotInfo}