MadelineProtoDocs/docs/API_docs/constructors/foundGifCached.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

928 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}