mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 15:14:39 +01:00
954 B
954 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, }