MadelineProtoDocs/docs/API_docs/constructors/messageMediaPhoto.md

793 B

title description image
messageMediaPhoto Attached photo. https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: messageMediaPhoto

Back to constructors index

Attached photo.

Attributes:

Name Type Required Description
photo Photo Optional Photo
ttl_seconds int Optional Time to live in seconds of self-destructing photo

Type: MessageMedia

Example:

$messageMediaPhoto = ['_' => 'messageMediaPhoto', 'photo' => Photo, 'ttl_seconds' => int];

Or, if you're into Lua:

messageMediaPhoto={_='messageMediaPhoto', photo=Photo, ttl_seconds=int}