mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 05:39:37 +01:00
35 lines
1001 B
Markdown
35 lines
1001 B
Markdown
|
---
|
||
|
title: user
|
||
|
description: user attributes, type and example
|
||
|
---
|
||
|
## Constructor: user
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[int](../types/int.md) | Required|
|
||
|
|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|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [User](../types/User.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$user = ['_' => 'user', 'id' => int, 'access_hash' => long, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int, ];
|
||
|
```
|
||
|
|