MadelineProtoDocs/old_docs/API_docs_v95/constructors/inputChatPhoto.md

39 lines
672 B
Markdown
Raw Normal View History

2019-03-29 21:12:30 +01:00
---
title: inputChatPhoto
description: Chat photo
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputChatPhoto
[Back to constructors index](index.md)
Chat photo
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|ID|
### Type: [InputChatPhoto](../types/InputChatPhoto.md)
### Example:
```php
$inputChatPhoto = ['_' => 'inputChatPhoto', 'id' => InputPhoto];
```
Or, if you're into Lua:
```lua
inputChatPhoto={_='inputChatPhoto', id=InputPhoto}
```