MadelineProto/old_docs/API_docs_v23/constructors/userContact.md

1.3 KiB

title description
userContact userContact attributes, type and example

Constructor: userContact

Back to constructors index

Attributes:

Name Type Required
id int Required
first_name string Required
last_name string Required
username string Required
access_hash long Required
phone string Required
photo UserProfilePhoto Required
status UserStatus Required

Type: User

Example:

$userContact = ['_' => 'userContact', 'id' => int, 'first_name' => string, 'last_name' => string, 'username' => string, 'access_hash' => long, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, ];

The following syntaxes can also be used:

$userContact = '@username'; // Username

$userContact = 44700; // bot API id (users)
$userContact = -492772765; // bot API id (chats)
$userContact = -10038575794; // bot API id (channels)

$userContact = 'user#44700'; // tg-cli style id (users)
$userContact = 'chat#492772765'; // tg-cli style id (chats)
$userContact = 'channel#38575794'; // tg-cli style id (channels)