1.7 KiB
1.7 KiB
title | description | image |
---|---|---|
inputMediaUploadedDocument | New document | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputMediaUploadedDocument
New document
Attributes:
Name | Type | Required | Description |
---|---|---|---|
nosound_video | Bool | Optional | Whether the specified document is a video file with no audio tracks (a GIF animation (even as MPEG4), for example) |
file | File path or InputFile | Yes | The uploaded file |
thumb | File path or InputFile | Optional | Thumbnail of the document, uploaded as for the file |
mime_type | string | Optional | MIME type of document |
attributes | Array of DocumentAttribute | Yes | Attributes |
stickers | Array of MessageMedia, Message, Update or InputDocument | Optional | Stickers |
ttl_seconds | int | Optional | Time to live in seconds of self-destructing document |
Type: InputMedia
Example:
$inputMediaUploadedDocument = ['_' => 'inputMediaUploadedDocument', 'nosound_video' => Bool, 'file' => InputFile, 'thumb' => InputFile, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute], 'stickers' => [InputDocument, 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}