mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 16:07:21 +01:00
1.0 KiB
1.0 KiB
title | description |
---|---|
channelAdminLogEventActionChangePhoto | channelAdminLogEventActionChangePhoto attributes, type and example |
Constructor: channelAdminLogEventActionChangePhoto
Attributes:
Name | Type | Required |
---|---|---|
prev_photo | ChatPhoto | Yes |
new_photo | ChatPhoto | Yes |
Type: ChannelAdminLogEventAction
Example:
$channelAdminLogEventActionChangePhoto = ['_' => 'channelAdminLogEventActionChangePhoto', 'prev_photo' => ChatPhoto, 'new_photo' => ChatPhoto, ];
PWRTelegram json-encoded version:
{"_":"channelAdminLogEventActionChangePhoto","prev_photo":"ChatPhoto","new_photo":"ChatPhoto"}
Or, if you're into Lua:
channelAdminLogEventActionChangePhoto={_='channelAdminLogEventActionChangePhoto', prev_photo=ChatPhoto, new_photo=ChatPhoto, }