MadelineProtoDocs/old_docs/API_docs_v18/constructors/userSelf.md

1.2 KiB

title description image
userSelf User self https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: userSelf

Back to constructors index

User self

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
phone string Yes Phone
photo UserProfilePhoto Optional Photo
status UserStatus Optional Status
inactive Bool Yes Inactive?

Type: User

Example:

$userSelf = ['_' => 'userSelf', 'id' => int, 'first_name' => 'string', 'last_name' => 'string', 'username' => 'string', 'phone' => 'string', 'photo' => UserProfilePhoto, 'status' => UserStatus, 'inactive' => Bool];

Or, if you're into Lua:

userSelf={_='userSelf', id=int, first_name='string', last_name='string', username='string', phone='string', photo=UserProfilePhoto, status=UserStatus, inactive=Bool}