MadelineProtoDocs/old_docs/API_docs_v82/constructors/foundGifCached.md

41 lines
816 B
Markdown
Raw Normal View History

2018-12-26 02:56:50 +01:00
---
title: foundGifCached
description: Found gif cached
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: foundGifCached
[Back to constructors index](index.md)
Found gif cached
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|URL|
|photo|[Photo](../types/Photo.md) | Optional|Photo|
|document|[Document](../types/Document.md) | Optional|Document|
### Type: [FoundGif](../types/FoundGif.md)
### Example:
```php
$foundGifCached = ['_' => 'foundGifCached', 'url' => 'string', 'photo' => Photo, 'document' => Document];
```
Or, if you're into Lua:
```lua
foundGifCached={_='foundGifCached', url='string', photo=Photo, document=Document}
```