2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: foundGifCached
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Found cached results
|
2019-03-29 21:12:30 +01:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: foundGifCached
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Found cached results
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|url|[string](../types/string.md) | Yes|GIF URL|
|
|
|
|
|photo|[Photo](../types/Photo.md) | Optional|Thumbnail|
|
|
|
|
|document|[Document](../types/Document.md) | Optional|Actual GIF document to send|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|