2017-03-31 17:35:20 +02:00
|
|
|
---
|
|
|
|
title: inputMediaDocumentExternal
|
|
|
|
description: inputMediaDocumentExternal attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: inputMediaDocumentExternal
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
|
|
|
|----------|:-------------:|---------:|
|
|
|
|
|url|[string](../types/string.md) | Yes|
|
|
|
|
|caption|[string](../types/string.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [InputMedia](../types/InputMedia.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
$inputMediaDocumentExternal = ['_' => 'inputMediaDocumentExternal', 'url' => string, 'caption' => string, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"inputMediaDocumentExternal","url":"string","caption":"string"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-31 17:35:20 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
inputMediaDocumentExternal={_='inputMediaDocumentExternal', url=string, caption=string, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|