MadelineProtoDocs/old_docs/API_docs_v14/constructors/inputMediaUploadedDocument.md

1.2 KiB

title description image
inputMediaUploadedDocument New document https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputMediaUploadedDocument

Back to constructors index

New document

Attributes:

Name Type Required Description
file File path or InputFile Yes The uploaded file
mime_type string Optional MIME type of document
attributes Array of DocumentAttribute Yes Attributes that specify the type of the document (video, audio, voice, sticker, etc.)
caption string Yes

Type: InputMedia

Example:

$inputMediaUploadedDocument = ['_' => 'inputMediaUploadedDocument', 'file' => InputFile, 'mime_type' => 'string', 'attributes' => [DocumentAttribute, DocumentAttribute], 'caption' => 'string'];

Or, if you're into Lua:

inputMediaUploadedDocument={_='inputMediaUploadedDocument', file=InputFile, mime_type='string', attributes={DocumentAttribute}, caption='string'}