MadelineProtoDocs/old_docs/API_docs_v62/constructors/inputMediaUploadedPhoto.md

41 lines
1021 B
Markdown

---
title: inputMediaUploadedPhoto
description: Photo
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputMediaUploadedPhoto
[Back to constructors index](index.md)
Photo
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|file|[File path or InputFile](../types/InputFile.md) | Yes|The [uploaded file](https://core.telegram.org/api/files)|
|caption|[string](../types/string.md) | Yes|Caption|
|stickers|Array of [MessageMedia, Message, Update or InputDocument](../types/InputDocument.md) | Optional|Stickers|
### Type: [InputMedia](../types/InputMedia.md)
### Example:
```php
$inputMediaUploadedPhoto = ['_' => 'inputMediaUploadedPhoto', 'file' => InputFile, 'caption' => 'string', 'stickers' => [InputDocument, InputDocument]];
```
Or, if you're into Lua:
```lua
inputMediaUploadedPhoto={_='inputMediaUploadedPhoto', file=InputFile, caption='string', stickers={InputDocument}}
```