MadelineProtoDocs/old_docs/API_docs_v27/constructors/userSelf.md

1.1 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

Type: User

Example:

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

Or, if you're into Lua:

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