MadelineProtoDocs/old_docs/API_docs_v40/constructors/inputChatUploadedPhoto.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

44 lines
946 B
Markdown

---
title: inputChatUploadedPhoto
description: inputChatUploadedPhoto attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputChatUploadedPhoto
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|file|[File path or InputFile](../types/InputFile.md) | Yes|
|crop|[InputPhotoCrop](../types/InputPhotoCrop.md) | Yes|
### Type: [InputChatPhoto](../types/InputChatPhoto.md)
### Example:
```php
$inputChatUploadedPhoto = ['_' => 'inputChatUploadedPhoto', 'file' => InputFile, 'crop' => InputPhotoCrop];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputChatUploadedPhoto", "file": InputFile, "crop": InputPhotoCrop}
```
Or, if you're into Lua:
```lua
inputChatUploadedPhoto={_='inputChatUploadedPhoto', file=InputFile, crop=InputPhotoCrop}
```