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 |
---|---|---|---|
user | User | Optional | Remaining user info |
link | contacts.Link | Yes | Link |
profile_photo | Photo | Optional | Profile photo |
notify_settings | PeerNotifySettings | Optional | Notification settings |
blocked | Bool | Yes | Blocked? |
real_first_name | string | Yes | Real first name |
real_last_name | string | Yes | Real last name |
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'}