mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 22:06:56 +01:00
34 lines
954 B
Markdown
34 lines
954 B
Markdown
|
---
|
||
|
title: userRequest
|
||
|
description: userRequest attributes, type and example
|
||
|
---
|
||
|
## Constructor: userRequest
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[int](../types/int.md) | Required|
|
||
|
|first\_name|[string](../types/string.md) | Required|
|
||
|
|last\_name|[string](../types/string.md) | Required|
|
||
|
|username|[string](../types/string.md) | Required|
|
||
|
|access\_hash|[long](../types/long.md) | Required|
|
||
|
|phone|[string](../types/string.md) | Required|
|
||
|
|photo|[UserProfilePhoto](../types/UserProfilePhoto.md) | Required|
|
||
|
|status|[UserStatus](../types/UserStatus.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [User](../types/User.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$userRequest = ['_' => 'userRequest', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, 'access_hash' => long, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, ];
|
||
|
```
|
||
|
|