1.3 KiB
1.3 KiB
title | description |
---|---|
userForeign | userForeign attributes, type and example |
Constructor: userForeign
Attributes:
Name | Type | Required |
---|---|---|
id | int | Required |
first_name | string | Required |
last_name | string | Required |
username | string | Required |
access_hash | long | Required |
photo | UserProfilePhoto | Required |
status | UserStatus | Required |
Type: User
Example:
$userForeign = ['_' => 'userForeign', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, 'access_hash' => long, 'photo' => UserProfilePhoto, 'status' => UserStatus, ];
The following syntaxes can also be used:
$userForeign = '@username'; // Username
$userForeign = 44700; // bot API id (users)
$userForeign = -492772765; // bot API id (chats)
$userForeign = -10038575794; // bot API id (channels)
$userForeign = 'user#44700'; // tg-cli style id (users)
$userForeign = 'chat#492772765'; // tg-cli style id (chats)
$userForeign = 'channel#38575794'; // tg-cli style id (channels)