MadelineProtoDocs/old_docs/API_docs_v81/constructors/inputChatPhoto.md

43 lines
775 B
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: inputChatPhoto
description: inputChatPhoto attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputChatPhoto
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|
### Type: [InputChatPhoto](../types/InputChatPhoto.md)
### Example:
```php
2018-07-12 20:24:55 +02:00
$inputChatPhoto = ['_' => 'inputChatPhoto', 'id' => InputPhoto];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputChatPhoto", "id": InputPhoto}
```
Or, if you're into Lua:
2018-07-12 20:24:55 +02:00
```lua
2018-07-12 20:24:55 +02:00
inputChatPhoto={_='inputChatPhoto', id=InputPhoto}
```