MadelineProtoDocs/docs/API_docs/constructors/foundGifCached.md
Daniil Gentili e5a1324684 docufix
2018-04-04 23:19:57 +00:00

925 B

title description image
foundGifCached foundGifCached attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: foundGifCached

Back to constructors index

Attributes:

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

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}