MadelineProtoDocs/old_docs/API_docs_v51/constructors/userFull.md

45 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:19:25 +02:00
---
title: userFull
2019-12-27 17:48:04 +01:00
description: Extended user info
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2018-04-01 13:19:25 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: userFull
2018-04-01 13:19:25 +02:00
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Extended user info
2018-12-26 02:56:50 +01:00
2018-04-01 13:19:25 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|blocked|[Bool](../types/Bool.md) | Optional|Whether you have blocked this user|
|user|[User](../types/User.md) | Optional|Remaining user info|
|about|[string](../types/string.md) | Optional|Bio of the user|
2019-12-27 18:25:37 +01:00
|link|[contacts.Link](../constructors/contacts.Link.md) | Yes|Link|
2018-12-26 02:56:50 +01:00
|profile\_photo|[Photo](../types/Photo.md) | Optional|Profile photo|
2019-12-27 17:48:04 +01:00
|notify\_settings|[PeerNotifySettings](../types/PeerNotifySettings.md) | Optional|Notification settings|
|bot\_info|[BotInfo](../types/BotInfo.md) | Optional|For bots, info about the bot (bot commands, etc)|
2018-04-01 13:19:25 +02:00
### Type: [UserFull](../types/UserFull.md)
### Example:
```php
2019-12-27 18:25:37 +01:00
$userFull = ['_' => 'userFull', 'blocked' => Bool, 'user' => User, 'about' => 'string', 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo];
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
2018-04-01 13:19:25 +02:00
```lua
2019-12-27 18:25:37 +01:00
userFull={_='userFull', blocked=Bool, user=User, about='string', link=contacts.Link, profile_photo=Photo, notify_settings=PeerNotifySettings, bot_info=BotInfo}
2018-04-01 13:19:25 +02:00
```