951 B
951 B
title | description |
---|---|
updateUserPhoto | updateUserPhoto attributes, type and example |
Constructor: updateUserPhoto
Attributes:
Name | Type | Required |
---|---|---|
user_id | int | Yes |
date | int | Yes |
photo | UserProfilePhoto | Yes |
previous | Bool | Yes |
Type: Update
Example:
$updateUserPhoto = ['_' => 'updateUserPhoto', 'user_id' => int, 'date' => int, 'photo' => UserProfilePhoto, 'previous' => Bool];
PWRTelegram json-encoded version:
{"_": "updateUserPhoto", "user_id": int, "date": int, "photo": UserProfilePhoto, "previous": Bool}
Or, if you're into Lua:
updateUserPhoto={_='updateUserPhoto', user_id=int, date=int, photo=UserProfilePhoto, previous=Bool}