mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-04 20:47:46 +01:00
865 B
865 B
title | description |
---|---|
userSelf | userSelf attributes, type and example |
Constructor: userSelf
Attributes:
Name | Type | Required |
---|---|---|
id | int | Required |
first_name | string | Required |
last_name | string | Required |
username | string | Required |
phone | string | Required |
photo | UserProfilePhoto | Required |
status | UserStatus | Required |
Type: User
Example:
$userSelf = ['_' => 'userSelf', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, ];