1.5 KiB
1.5 KiB
title | description |
---|---|
user | user attributes, type and example |
Constructor: user
Attributes:
Name | Type | Required |
---|---|---|
id | int | Yes |
access_hash | long | Optional |
first_name | string | Optional |
last_name | string | Optional |
username | string | Optional |
phone | string | Optional |
photo | UserProfilePhoto | Optional |
status | UserStatus | Optional |
bot_info_version | int | Optional |
Type: User
Example:
$user = ['_' => 'user', 'id' => int, 'access_hash' => long, 'first_name' => 'string', 'last_name' => 'string', 'username' => 'string', 'phone' => 'string', 'photo' => UserProfilePhoto, 'status' => UserStatus, 'bot_info_version' => int];
PWRTelegram json-encoded version:
{"_": "user", "id": int, "access_hash": long, "first_name": "string", "last_name": "string", "username": "string", "phone": "string", "photo": UserProfilePhoto, "status": UserStatus, "bot_info_version": int}
Or, if you're into Lua:
user={_='user', id=int, access_hash=long, first_name='string', last_name='string', username='string', phone='string', photo=UserProfilePhoto, status=UserStatus, bot_info_version=int}