MadelineProto/docs/TD_docs/constructors/messagePhoto.md
2017-07-23 16:33:46 +02:00

784 B

title description
messagePhoto Photo message

Constructor: messagePhoto

Back to constructors index

Photo message

Attributes:

Name Type Required Description
photo photo Yes Message content
caption string Yes Photo caption

Type: MessageContent

Example:

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

PWRTelegram json-encoded version:

{"_": "messagePhoto", "photo": photo, "caption": "string"}

Or, if you're into Lua:

messagePhoto={_='messagePhoto', photo=photo, caption='string'}