MadelineProto/old_docs/API_docs_v72/constructors/channelAdminLogEventActionChangePhoto.md
2017-11-15 12:41:58 +00:00

1022 B

title description
channelAdminLogEventActionChangePhoto channelAdminLogEventActionChangePhoto attributes, type and example

Constructor: channelAdminLogEventActionChangePhoto

Back to constructors index

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}