47 lines
966 B
Markdown
47 lines
966 B
Markdown
---
|
|
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];
|
|
```
|
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
```
|
|
{"_": "foundGifCached", "url": "string", "photo": Photo, "document": Document}
|
|
```
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
```lua
|
|
foundGifCached={_='foundGifCached', url='string', photo=Photo, document=Document}
|
|
|
|
```
|
|
|
|
|