MadelineProtoDocs/old_docs/API_docs_v25/constructors/userFull.md

48 lines
1.8 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:24:46 +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:24:46 +02:00
---
2018-04-05 01:19:57 +02:00
# Constructor: userFull
2018-04-01 13:24:46 +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:24:46 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2020-06-16 17:50:25 +02:00
|blocked|[Bool](../types/Bool.md) | Optional|Whether you have blocked this user|
|phone\_calls\_available|[Bool](../types/Bool.md) | Optional|Whether this user can make VoIP calls|
|phone\_calls\_private|[Bool](../types/Bool.md) | Optional|Whether this user's privacy settings allow you to call him|
2019-12-27 17:48:04 +01:00
|user|[User](../types/User.md) | Optional|Remaining user info|
2020-06-16 17:50:25 +02:00
|about|[string](../types/string.md) | Optional|Bio of the user|
|link|[contacts.Link](../constructors/contacts.Link.md) | Yes|
2018-12-26 02:56:50 +01:00
|profile\_photo|[Photo](../types/Photo.md) | Optional|Profile photo|
2020-06-16 17:50:25 +02:00
|notify\_settings|[PeerNotifySettings](../types/PeerNotifySettings.md) | Yes|Notification settings|
|bot\_info|[BotInfo](../types/BotInfo.md) | Optional|For bots, info about the bot (bot commands, etc)|
|common\_chats\_count|[int](../types/int.md) | Yes|Chats in common with this user|
2018-04-01 13:24:46 +02:00
### Type: [UserFull](../types/UserFull.md)
### Example:
```php
2020-06-16 17:50:25 +02:00
$userFull = ['_' => 'userFull', 'blocked' => Bool, 'phone_calls_available' => Bool, 'phone_calls_private' => Bool, 'user' => User, 'about' => 'string', 'link' => contacts.Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'bot_info' => BotInfo, 'common_chats_count' => int];
2018-04-01 13:24:46 +02:00
```
Or, if you're into Lua:
2018-04-01 13:24:46 +02:00
```lua
2020-06-16 17:50:25 +02:00
userFull={_='userFull', blocked=Bool, phone_calls_available=Bool, phone_calls_private=Bool, user=User, about='string', link=contacts.Link, profile_photo=Photo, notify_settings=PeerNotifySettings, bot_info=BotInfo, common_chats_count=int}
2018-04-01 13:24:46 +02:00
```