MadelineProtoDocs/docs/API_docs/constructors/inputMediaDocumentExternal.md

925 B

title description image
inputMediaDocumentExternal Document that will be downloaded by the telegram servers https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: inputMediaDocumentExternal

Back to constructors index

Document that will be downloaded by the telegram servers

Attributes:

Name Type Required Description
url string Yes URL of the document
ttl_seconds int Optional Self-destruct time to live of document

Type: InputMedia

Example:

$inputMediaDocumentExternal = ['_' => 'inputMediaDocumentExternal', 'url' => 'string', 'ttl_seconds' => int];

Or, if you're into Lua:

inputMediaDocumentExternal={_='inputMediaDocumentExternal', url='string', ttl_seconds=int}