MadelineProtoDocs/old_docs/API_docs_v33/constructors/userFull.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

2018-04-01 13:24:46 +02:00
---
title: userFull
2018-12-26 02:56:50 +01:00
description: User full
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)
2018-12-26 02:56:50 +01:00
User full
2018-04-01 13:24:46 +02:00
### Attributes:
2018-12-26 02:56:50 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|user|[User](../types/User.md) | Optional|User|
|link|[contacts\_Link](../types/contacts_Link.md) | Yes|Link|
|profile\_photo|[Photo](../types/Photo.md) | Optional|Profile photo|
|notify\_settings|[PeerNotifySettings](../types/PeerNotifySettings.md) | Optional|Notify settings|
|blocked|[Bool](../types/Bool.md) | Yes|Blocked?|
|bot\_info|[BotInfo](../types/BotInfo.md) | Optional|Bot info|
2018-04-01 13:24:46 +02:00
### Type: [UserFull](../types/UserFull.md)
### Example:
```php
2018-04-01 13:24:46 +02:00
$userFull = ['_' => 'userFull', 'user' => User, 'link' => contacts_Link, 'profile_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'blocked' => Bool, 'bot_info' => BotInfo];
```
Or, if you're into Lua:
2018-04-01 13:24:46 +02:00
```lua
2018-04-01 13:24:46 +02:00
userFull={_='userFull', user=User, link=contacts_Link, profile_photo=Photo, notify_settings=PeerNotifySettings, blocked=Bool, bot_info=BotInfo}
```