mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 16:26:57 +01:00
44 lines
642 B
Markdown
44 lines
642 B
Markdown
---
|
|
title: messageChatDeletePhoto
|
|
description: Chat photo deleted
|
|
---
|
|
## Constructor: messageChatDeletePhoto
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
Chat photo deleted
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required | Description |
|
|
|----------|:-------------:|:--------:|------------:|
|
|
|
|
|
|
|
|
### Type: [MessageContent](../types/MessageContent.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$messageChatDeletePhoto = ['_' => 'messageChatDeletePhoto', ];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_":"messageChatDeletePhoto"}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
messageChatDeletePhoto={_='messageChatDeletePhoto', }
|
|
|
|
```
|
|
|
|
|