1.2 KiB
1.2 KiB
title | description |
---|---|
userFull | userFull attributes, type and example |
Constructor: userFull
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}