MadelineProtoDocs/docs/API_docs/constructors/foundGif.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

50 lines
1.2 KiB
Markdown

---
title: foundGif
description: Found gif
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: foundGif
[Back to constructors index](index.md)
Found gif
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|thumb\_url|[string](../types/string.md) | Yes|Thumbnail URL|
|content\_url|[string](../types/string.md) | Yes|Content URL|
|content\_type|[string](../types/string.md) | Yes|Content type|
|w|[int](../types/int.md) | Yes|Width|
|h|[int](../types/int.md) | Yes|Height|
### Type: [FoundGif](../types/FoundGif.md)
### Example:
```php
$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:
```lua
foundGif={_='foundGif', url='string', thumb_url='string', content_url='string', content_type='string', w=int, h=int}
```