MadelineProtoDocs/old_docs/API_docs_v25/constructors/userSelf.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

1.4 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];

PWRTelegram json-encoded version:

{"_": "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}