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

1.3 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
real_first_name string Yes
real_last_name string Yes

Type: UserFull

Example:

$userFull = ['_' => 'userFull', 'user' => User, 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'blocked' => Bool, 'real_first_name' => 'string', 'real_last_name' => 'string'];

Or, if you're into Lua:

userFull={_='userFull', user=User, link=contacts.Link, profile_photo=Photo, notify_settings=PeerNotifySettings, blocked=Bool, real_first_name='string', real_last_name='string'}