MadelineProtoDocs/old_docs/API_docs_v2/constructors/userDeleted.md

833 B

title description image
userDeleted userDeleted attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: userDeleted

Back to constructors index

Attributes:

Name Type Required
id int Yes
first_name string Yes
last_name string Yes
username string Yes

Type: User

Example:

$userDeleted = ['_' => 'userDeleted', 'id' => int, 'first_name' => 'string', 'last_name' => 'string', 'username' => 'string'];

Or, if you're into Lua:

userDeleted={_='userDeleted', id=int, first_name='string', last_name='string', username='string'}