MadelineProto/old_docs/API_docs_v46/constructors/userFull.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

1.2 KiB

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];

PWRTelegram json-encoded version:

{"_": "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}