1.1 KiB
1.1 KiB
title | description | image |
---|---|---|
channelAdminLogEventActionChangePhoto | channelAdminLogEventActionChangePhoto attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: channelAdminLogEventActionChangePhoto
Attributes:
Name | Type | Required |
---|---|---|
prev_photo | ChatPhoto | Optional |
new_photo | ChatPhoto | Optional |
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}