mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-14 01:27:19 +01:00
914 B
914 B
title | description |
---|---|
userDeleted | userDeleted attributes, type and example |
Constructor: userDeleted
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, ];
PWRTelegram json-encoded version:
{"_":"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, }