MadelineProtoDocs/old_docs/API_docs_v10/constructors/inputChatPhoto.md

40 lines
867 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: inputChatPhoto
description: Existing photo to be set as a chat profile photo.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputChatPhoto
[Back to constructors index](index.md)
Existing photo to be set as a chat profile photo.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|Existing photo|
|crop|[InputPhotoCrop](../types/InputPhotoCrop.md) | Yes|
### Type: [InputChatPhoto](../types/InputChatPhoto.md)
### Example:
```php
$inputChatPhoto = ['_' => 'inputChatPhoto', 'id' => InputPhoto, 'crop' => InputPhotoCrop];
```
Or, if you're into Lua:
```lua
inputChatPhoto={_='inputChatPhoto', id=InputPhoto, crop=InputPhotoCrop}
```