MadelineProto/old_docs/API_docs_v41/constructors/user.md
2017-02-12 20:32:28 +03:00

1.5 KiB

title description
user user attributes, type and example

Constructor: user

Back to constructors index

Attributes:

Name Type Required
self Bool Optional
contact Bool Optional
mutual_contact Bool Optional
deleted Bool Optional
bot Bool Optional
bot_chat_history Bool Optional
bot_nochats Bool Optional
verified Bool Optional
id int Required
access_hash long Optional
first_name string Optional
last_name string Optional
username string Optional
phone string Optional
photo UserProfilePhoto Optional
status UserStatus Optional
bot_info_version int Optional

Type: User

Example:

$user = ['_' => 'user', 'self' => true, 'contact' => true, 'mutual_contact' => true, 'deleted' => true, 'bot' => true, 'bot_chat_history' => true, 'bot_nochats' => true, 'verified' => true, 'id' => int, 'access_hash' => long, 'first_name' => string, 'last_name' => string, 'username' => string, 'phone' => string, 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int, ];