MadelineProto/old_docs/API_docs_v33/constructors/userFull.md

997 B

title description
userFull userFull attributes, type and example

Constructor: userFull

Back to constructors index

Attributes:

Name Type Required
user User Yes
link contacts_Link Yes
profile_photo Photo Yes
notify_settings PeerNotifySettings Yes
blocked Bool Yes
bot_info BotInfo Yes

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, }