MadelineProto/old_docs/API_docs_v45/constructors/user.md

55 lines
2.2 KiB
Markdown

---
title: user
description: user attributes, type and example
---
## Constructor: user
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|self|[Bool](../types/Bool.md) | Optional|
|contact|[Bool](../types/Bool.md) | Optional|
|mutual\_contact|[Bool](../types/Bool.md) | Optional|
|deleted|[Bool](../types/Bool.md) | Optional|
|bot|[Bool](../types/Bool.md) | Optional|
|bot\_chat\_history|[Bool](../types/Bool.md) | Optional|
|bot\_nochats|[Bool](../types/Bool.md) | Optional|
|verified|[Bool](../types/Bool.md) | Optional|
|restricted|[Bool](../types/Bool.md) | Optional|
|id|[int](../types/int.md) | Yes|
|access\_hash|[long](../types/long.md) | Optional|
|first\_name|[string](../types/string.md) | Optional|
|last\_name|[string](../types/string.md) | Optional|
|username|[string](../types/string.md) | Optional|
|phone|[string](../types/string.md) | Optional|
|photo|[UserProfilePhoto](../types/UserProfilePhoto.md) | Optional|
|status|[UserStatus](../types/UserStatus.md) | Optional|
|bot\_info\_version|[int](../types/int.md) | Optional|
|restriction\_reason|[string](../types/string.md) | Optional|
|bot\_inline\_placeholder|[string](../types/string.md) | Optional|
### Type: [User](../types/User.md)
### Example:
```
$user = ['_' => 'user', 'self' => true, 'contact' => true, 'mutual_contact' => true, 'deleted' => true, 'bot' => true, 'bot_chat_history' => true, 'bot_nochats' => true, 'verified' => true, 'restricted' => true, 'id' => int, 'access_hash' => long, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int, 'restriction_reason' => string, 'bot_inline_placeholder' => string, ];
```
Or, if you're into Lua:
```
user={_='user', self=true, contact=true, mutual_contact=true, deleted=true, bot=true, bot_chat_history=true, bot_nochats=true, verified=true, restricted=true, id=int, access_hash=long, first_name=string, last_name=string, username=string, phone=string, photo=UserProfilePhoto, status=UserStatus, bot_info_version=int, restriction_reason=string, bot_inline_placeholder=string, }
```