1.2 KiB
1.2 KiB
title | description | image |
---|---|---|
userForeign | User foreign | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: userForeign
User foreign
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | int | Yes | ID |
first_name | string | Yes | First name |
last_name | string | Yes | Last name |
username | string | Yes | Username |
access_hash | long | Yes | Access hash |
photo | UserProfilePhoto | Optional | Photo |
status | UserStatus | Optional | Status |
Type: User
Example:
$userForeign = ['_' => 'userForeign', 'id' => int, 'first_name' => 'string', 'last_name' => 'string', 'username' => 'string', 'access_hash' => long, 'photo' => UserProfilePhoto, 'status' => UserStatus];
Or, if you're into Lua:
userForeign={_='userForeign', id=int, first_name='string', last_name='string', username='string', access_hash=long, photo=UserProfilePhoto, status=UserStatus}