MadelineProtoDocs/old_docs/API_docs_v8/constructors/userFull.md
2020-06-16 17:50:25 +02:00

1.2 KiB

title description image
userFull Extended user info https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: userFull

Back to constructors index

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}