45 lines
855 B
Markdown
45 lines
855 B
Markdown
---
|
|
title: inputMediaGifExternal
|
|
description: inputMediaGifExternal attributes, type and example
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: inputMediaGifExternal
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|url|[string](../types/string.md) | Yes|
|
|
|q|[string](../types/string.md) | Yes|
|
|
|
|
|
|
|
|
### Type: [InputMedia](../types/InputMedia.md)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$inputMediaGifExternal = ['_' => 'inputMediaGifExternal', 'url' => 'string', 'q' => 'string'];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "inputMediaGifExternal", "url": "string", "q": "string"}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
```
|
|
inputMediaGifExternal={_='inputMediaGifExternal', url='string', q='string'}
|
|
|
|
```
|
|
|
|
|