MadelineProto/old_docs/API_docs_v33/constructors/messageMediaPhoto.md
2017-07-23 16:11:02 +02:00

772 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, }