MadelineProtoDocs/docs/API_docs/constructors/foundGif.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

49 lines
1.1 KiB
Markdown

---
title: foundGif
description: foundGif attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: foundGif
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|url|[string](../types/string.md) | Yes|
|thumb\_url|[string](../types/string.md) | Yes|
|content\_url|[string](../types/string.md) | Yes|
|content\_type|[string](../types/string.md) | Yes|
|w|[int](../types/int.md) | Yes|
|h|[int](../types/int.md) | Yes|
### Type: [FoundGif](../types/FoundGif.md)
### Example:
```
$foundGif = ['_' => 'foundGif', 'url' => 'string', 'thumb_url' => 'string', 'content_url' => 'string', 'content_type' => 'string', 'w' => int, 'h' => int];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "foundGif", "url": "string", "thumb_url": "string", "content_url": "string", "content_type": "string", "w": int, "h": int}
```
Or, if you're into Lua:
```
foundGif={_='foundGif', url='string', thumb_url='string', content_url='string', content_type='string', w=int, h=int}
```