1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 10:34:38 +01:00
MadelineProto/old_docs/API_docs_v44/constructors/messageMediaPhoto.md
2017-07-23 16:33:46 +02:00

775 B

title description
messageMediaPhoto messageMediaPhoto attributes, type and example

Constructor: messageMediaPhoto

Back to constructors index

Attributes:

Name Type Required
photo Photo Yes
caption string Yes

Type: MessageMedia

Example:

$messageMediaPhoto = ['_' => 'messageMediaPhoto', 'photo' => Photo, 'caption' => 'string'];

PWRTelegram json-encoded version:

{"_": "messageMediaPhoto", "photo": Photo, "caption": "string"}

Or, if you're into Lua:

messageMediaPhoto={_='messageMediaPhoto', photo=Photo, caption='string'}