MadelineProto/old_docs/API_docs_v44/constructors/foundGif.md

43 lines
606 B
Markdown
Raw Normal View History

---
title: foundGif
description: foundGif attributes, type and example
---
## Constructor: foundGif
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
2017-08-20 11:05:56 +02:00
|----------|---------------|----------|
|webpage|[WebPage](../types/WebPage.md) | Yes|
### Type: [FoundGif](../types/FoundGif.md)
### Example:
```
2017-07-23 16:33:46 +02:00
$foundGif = ['_' => 'foundGif', 'webpage' => WebPage];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
2017-07-23 16:33:46 +02:00
{"_": "foundGif", "webpage": WebPage}
2017-07-23 16:11:02 +02:00
```
Or, if you're into Lua:
```
2017-07-23 16:33:46 +02:00
foundGif={_='foundGif', webpage=WebPage}
```