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

966 B

title description image
foundGifCached Found gif cached https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: foundGifCached

Back to constructors index

Found gif cached

Attributes:

Name Type Required Description
url string Yes URL
photo Photo Optional Photo
document Document Optional Document

Type: FoundGif

Example:

$foundGifCached = ['_' => 'foundGifCached', 'url' => 'string', 'photo' => Photo, 'document' => Document];

PWRTelegram json-encoded version:

{"_": "foundGifCached", "url": "string", "photo": Photo, "document": Document}

Or, if you're into Lua:

foundGifCached={_='foundGifCached', url='string', photo=Photo, document=Document}