4baac3178e
Add PHP, Lua language tag to Code area
1.7 KiB
1.7 KiB
title | description | image |
---|---|---|
inputMediaUploadedDocument | inputMediaUploadedDocument attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputMediaUploadedDocument
Attributes:
Name | Type | Required |
---|---|---|
nosound_video | Bool | Optional |
file | File path or InputFile | Yes |
thumb | File path or InputFile | Optional |
mime_type | string | Optional |
attributes | Array of DocumentAttribute | Yes |
stickers | Array of MessageMedia, Message, Update or InputDocument | Optional |
ttl_seconds | int | Optional |
Type: InputMedia
Example:
$inputMediaUploadedDocument = ['_' => 'inputMediaUploadedDocument', 'nosound_video' => Bool, 'file' => InputFile, 'thumb' => InputFile, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute], 'stickers' => [InputDocument, InputDocument], 'ttl_seconds' => int];
PWRTelegram json-encoded version:
{"_": "inputMediaUploadedDocument", "nosound_video": Bool, "file": InputFile, "thumb": InputFile, "mime_type": "string", "attributes": [DocumentAttribute], "stickers": [InputDocument], "ttl_seconds": int}
Or, if you're into Lua:
inputMediaUploadedDocument={_='inputMediaUploadedDocument', nosound_video=Bool, file=InputFile, thumb=InputFile, mime_type='string', attributes={DocumentAttribute}, stickers={InputDocument}, ttl_seconds=int}