MadelineProtoDocs/docs/API_docs/constructors/inputMediaUploadedPhoto.md

1.1 KiB

title description image
inputMediaUploadedPhoto Photo https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputMediaUploadedPhoto

Back to constructors index

Photo

Attributes:

Name Type Required Description
file File path or InputFile Yes The uploaded file
stickers Array of MessageMedia, Message, Update or InputDocument Optional Attached mask stickers
ttl_seconds int Optional Time to live in seconds of self-destructing photo

Type: InputMedia

Example:

$inputMediaUploadedPhoto = ['_' => 'inputMediaUploadedPhoto', 'file' => InputFile, 'stickers' => [InputDocument, InputDocument], 'ttl_seconds' => int];

Or, if you're into Lua:

inputMediaUploadedPhoto={_='inputMediaUploadedPhoto', file=InputFile, stickers={InputDocument}, ttl_seconds=int}